diff options
author | ene <ene@sils.li> | 2023-02-16 17:36:26 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-16 18:13:03 +0100 |
commit | 62609ecba4373d6d89a39d7b5e7ca220ad869975 (patch) | |
tree | 52ed2e8608d4eda8759707743989b6af40b08ee3 /system/fileSystemLayouts | |
parent | Feat(nix): Add settings (diff) | |
download | nixos-config-62609ecba4373d6d89a39d7b5e7ca220ad869975.tar.gz nixos-config-62609ecba4373d6d89a39d7b5e7ca220ad869975.zip |
Feat: Add impersistent for persistent files and dirs
Diffstat (limited to 'system/fileSystemLayouts')
-rw-r--r-- | system/fileSystemLayouts/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/fileSystemLayouts/default.nix b/system/fileSystemLayouts/default.nix index 9a9b8add..d861d888 100644 --- a/system/fileSystemLayouts/default.nix +++ b/system/fileSystemLayouts/default.nix @@ -35,6 +35,7 @@ in { "/srv" = { device = cfg.mainDisk; fsType = "btrfs"; + neededForBoot = true; options = ["subvol=storage" "compress-force=zstd:15"]; }; "/boot" = { |