From a433b7df295f924bc3259fdb7ece389a31ae3181 Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 4 Feb 2023 22:17:24 +0100 Subject: Feat: Reworked the Filesystem configuration This reduces the unnecessary complexity of the whole fileSystemLayouts.nix file. --- system/filesystemLayouts/filesystemLayouts.nix | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) (limited to 'system/filesystemLayouts/filesystemLayouts.nix') diff --git a/system/filesystemLayouts/filesystemLayouts.nix b/system/filesystemLayouts/filesystemLayouts.nix index 5992179a..ad51bbb8 100644 --- a/system/filesystemLayouts/filesystemLayouts.nix +++ b/system/filesystemLayouts/filesystemLayouts.nix @@ -30,32 +30,22 @@ in { "/nix" = { device = cfg.mainDisk; fsType = "btrfs"; - options = ["subvol=@nix" "compress-force=zstd:9"]; + options = ["subvol=nix" "compress-force=zstd:15"]; }; - "/boot" = { - device = cfg.efiDisk; - fsType = "vfat"; - }; - - "/srv/home" = { + "/srv" = { device = cfg.mainDisk; fsType = "btrfs"; - options = ["subvol=@home" "compress-force=zstd:9"]; + options = ["subvol=storage" "compress-force=zstd:15"]; }; - "/srv/nixos-config" = { - device = cfg.mainDisk; - fsType = "btrfs"; - options = ["subvol=@nixos-config" "compress-force=zstd:9"]; + "/boot" = { + device = cfg.efiDisk; + fsType = "vfat"; }; "/etc/nixos" = { device = "/srv/nix-config"; options = ["bind"]; }; - "/home" = { - device = "/srv/home"; - options = ["bind"]; - }; }; swapDevices = []; }; -- cgit 1.4.1