fix(Infini-SERVER): + -> ++ for lists
This commit is contained in:
parent
965a6c3782
commit
616967acbe
1 changed files with 3 additions and 3 deletions
|
@ -36,21 +36,21 @@ in
|
||||||
"/persist" = {
|
"/persist" = {
|
||||||
device = main;
|
device = main;
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=root" "ssd" ] + btrfsOptions;
|
options = [ "subvol=root" "ssd" ] ++ btrfsOptions;
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
device = main;
|
device = main;
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=nix" "ssd" ] + btrfsOptions;
|
options = [ "subvol=nix" "ssd" ] ++ btrfsOptions;
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = main;
|
device = main;
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=boot" "ssd" ] + btrfsOptions;
|
options = [ "subvol=boot" "ssd" ] ++ btrfsOptions;
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue