Fix errors
This commit is contained in:
@@ -31,33 +31,36 @@ in
|
||||
umount /btrfs_tmp
|
||||
'';
|
||||
|
||||
fileSystems."/" = {
|
||||
device = rootDisk;
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=root" ];
|
||||
};
|
||||
# fileSystems."/" = {
|
||||
# device = rootDisk;
|
||||
# fsType = "btrfs";
|
||||
# options = [ "subvol=root" ];
|
||||
# };
|
||||
#
|
||||
# fileSystems."/persist" = {
|
||||
# device = rootDisk;
|
||||
# neededForBoot = true;
|
||||
# fsType = "btrfs";
|
||||
# options = [ "subvol=persist" ];
|
||||
# };
|
||||
#
|
||||
# fileSystems."/nix" = {
|
||||
# device = rootDisk;
|
||||
# neededForBoot = true;
|
||||
# fsType = "btrfs";
|
||||
# options = [ "subvol=nix" ];
|
||||
# };
|
||||
#
|
||||
# fileSystems."/boot" = {
|
||||
# device = bootDisk;
|
||||
# fsType = "vfat";
|
||||
# options = [ "fmask=0022" "dmask=0022" "umask=0077" ];
|
||||
# };
|
||||
#
|
||||
# swapDevices = [ {
|
||||
# device = "/.swapvol/swapfile";
|
||||
# } ];
|
||||
|
||||
fileSystems."/persist" = {
|
||||
device = rootDisk;
|
||||
neededForBoot = true;
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=persist" ];
|
||||
};
|
||||
|
||||
fileSystems."/nix" = {
|
||||
device = rootDisk;
|
||||
neededForBoot = true;
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=nix" ];
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = bootDisk;
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" "umask=0077" ];
|
||||
};
|
||||
|
||||
swapDevices = [ {
|
||||
device = "/.swapvol/swapfile";
|
||||
} ];
|
||||
fileSystems."/persist".neededForBoot = true;
|
||||
fileSystems."/nix".neededForBoot = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user