aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/file-system.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-04-20 11:02:46 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-04-20 11:02:46 +0200
commiteace74658ed1ae25fe092aef5e742bd7ac7cb2e8 (patch)
tree769f245e96bec33ea24b4f2f79d8ca82dd9a2f2b /hosts/herra/file-system.nix
parentce04045cccd723597c67e45d435aad9c96f6800f (diff)
parent2db7a855aebaed5514fba6547fc66910ad88e0d4 (diff)
Merge branch 'main' of cgit:/srv/git/NixOS-config
Diffstat (limited to 'hosts/herra/file-system.nix')
-rw-r--r--hosts/herra/file-system.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/hosts/herra/file-system.nix b/hosts/herra/file-system.nix
index 71a77fd..2e47cf2 100644
--- a/hosts/herra/file-system.nix
+++ b/hosts/herra/file-system.nix
@@ -1,7 +1,6 @@
{...}: {
fileSystems."/nix" = {
- device = "/dev/disk/by-label/nixstore";
- fsType = "btrfs";
- options = [ "subvol=@nix" "compress=zstd:3" "noatime" ];
-};
-} \ No newline at end of file
+ options = [ "subvol=@nix" "compress=zstd:3" "noatime" ];
+ neededForBoot = true;
+ };
+}