fix(Infini-SERVER): + -> ++ for lists

This commit is contained in:
Infinidoge 2022-02-16 23:34:12 -05:00
parent 965a6c3782
commit 616967acbe

View file

@ -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;
}; };