Fix errors

This commit is contained in:
2026-03-13 19:14:07 +00:00
parent 69232abb6c
commit d869bc0cf9
4 changed files with 45 additions and 32 deletions

View File

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