aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/herra')
-rw-r--r--hosts/herra/file-system.nix5
1 files changed, 3 insertions, 2 deletions
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;
+ };
}