upd
This commit is contained in:
@ -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";
|
||||
|
Reference in New Issue
Block a user