aboutsummaryrefslogtreecommitdiffstats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-24 14:44:27 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-24 14:44:27 +0200
commitf2ed99cd297040568170fb93e7481919060f29e7 (patch)
treea983e405f4a347519c7e31d6f5b17940d163489c /flake/nixosConfigurations
parentfeat(modules/nix): Switch to `lix` (diff)
downloadnixos-config-f2ed99cd297040568170fb93e7481919060f29e7.zip
refactor(modules/impermanence): Move all optional dirs to their modules
This increases the locality of configurations and makes it easier to see, what happens, when you enable a module.
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r--flake/nixosConfigurations/common.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/flake/nixosConfigurations/common.nix b/flake/nixosConfigurations/common.nix
index bdf65a35..585e883b 100644
--- a/flake/nixosConfigurations/common.nix
+++ b/flake/nixosConfigurations/common.nix
@@ -12,7 +12,16 @@
};
home-manager.enable = true;
- impermanence.enable = true;
+ impermanence = {
+ enable = true;
+
+ directories = [
+ "/etc/nixos"
+ "/var/log"
+ "/var/lib/systemd"
+ "/var/lib/nixos"
+ ];
+ };
polkit.enable = true;
power.enable = true;