This commit is contained in:
unexplrd
2025-02-14 16:00:25 +02:00
parent ec5faa59a9
commit c5513bf9b2
5 changed files with 95 additions and 47 deletions

View File

@ -33,17 +33,29 @@
"/" = {
device = "/dev/disk/by-uuid/79ce18b8-3a9e-4cd0-be62-60972686f44a";
fsType = "btrfs";
options = ["compress=zstd,subvol=@nixos-root"];
options = [
"noatime"
"compress=zstd"
"subvol=@nixos-root"
];
};
"/home" = {
device = "/dev/disk/by-uuid/79ce18b8-3a9e-4cd0-be62-60972686f44a";
fsType = "btrfs";
options = ["compress=zstd,subvol=@home"];
options = [
"noatime"
"compress=zstd"
"subvol=@home"
];
};
"/storage" = {
device = "/dev/disk/by-uuid/79ce18b8-3a9e-4cd0-be62-60972686f44a";
fsType = "btrfs";
options = ["compress=zstd,subvol=@storage"];
options = [
"noatime"
"compress=zstd"
"subvol=@storage"
];
};
"/boot" = {
device = "/dev/disk/by-uuid/976C-7EE6";