From dae3c2ca44b4cc0f5b250db1732e7c106470e804 Mon Sep 17 00:00:00 2001 From: Oromis Foxtail Date: Sun, 19 Apr 2026 22:43:36 +0200 Subject: fixed some issues --- hosts/herra/file-system.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hosts/herra/file-system.nix') diff --git a/hosts/herra/file-system.nix b/hosts/herra/file-system.nix index 71a77fd..47e75cb 100644 --- a/hosts/herra/file-system.nix +++ b/hosts/herra/file-system.nix @@ -1,7 +1,5 @@ {...}: { fileSystems."/nix" = { - device = "/dev/disk/by-label/nixstore"; - fsType = "btrfs"; - options = [ "subvol=@nix" "compress=zstd:3" "noatime" ]; + options = [ "compress=zstd:3" "noatime" ]; #"subvol=@nix" }; -} \ No newline at end of file +} -- cgit v1.2.3 From 2db7a855aebaed5514fba6547fc66910ad88e0d4 Mon Sep 17 00:00:00 2001 From: Oromis Foxtail Date: Sun, 19 Apr 2026 22:54:00 +0200 Subject: Added neededforboot to nix store paortition --- hosts/herra/file-system.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'hosts/herra/file-system.nix') diff --git a/hosts/herra/file-system.nix b/hosts/herra/file-system.nix index 47e75cb..2e47cf2 100644 --- a/hosts/herra/file-system.nix +++ b/hosts/herra/file-system.nix @@ -1,5 +1,6 @@ {...}: { fileSystems."/nix" = { - options = [ "compress=zstd:3" "noatime" ]; #"subvol=@nix" -}; + options = [ "subvol=@nix" "compress=zstd:3" "noatime" ]; + neededForBoot = true; + }; } -- cgit v1.2.3