updates to kaladin

This commit is contained in:
Chris Cochrun 2025-09-05 15:26:48 -05:00
parent 78ea1fd415
commit aba2599673
3 changed files with 27 additions and 17 deletions

View file

@ -10,9 +10,23 @@
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/e5add982-fbdf-45e6-9e96-ea81c3ceff37";
fsType = "ext4";
{ device = "/dev/disk/by-uuid/1ba185c4-8b74-46f3-95d8-9ccaab0be1ad";
fsType = "btrfs";
options = [ "subvol=@" "noatime" "compress=zstd:1" "space_cache=v2" "ssd" ];
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/1ba185c4-8b74-46f3-95d8-9ccaab0be1ad";
fsType = "btrfs";
options = [ "subvol=@home" "noatime" "compress=zstd:1" "space_cache=v2" "ssd" ];
};
fileSystems."/snapshots" =
{ device = "/dev/disk/by-uuid/1ba185c4-8b74-46f3-95d8-9ccaab0be1ad";
fsType = "btrfs";
options = [ "subvol=@snapshots" "noatime" "compress=zstd:1" "space_cache=v2" "ssd" ];
};
fileSystems."/boot" =
@ -24,7 +38,7 @@
fileSystems."/run/media/chris/Storage" =
{ device = "/dev/disk/by-uuid/4c7d4273-7b72-4aa8-8e1c-e281543d06cb";
fsType = "btrfs";
options = [ "noatime" "space_cache" "clear_cache" "compress=zstd" ];
options = [ "noatime" "space_cache=v2" "clear_cache" "compress=zstd:1" ];
};
fileSystems."/run/media/chris/backup" =