aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/im
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 /modules/by-name/im
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 'modules/by-name/im')
-rw-r--r--modules/by-name/im/impermanence/module.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/modules/by-name/im/impermanence/module.nix b/modules/by-name/im/impermanence/module.nix
index 9730dde6..513a91b7 100644
--- a/modules/by-name/im/impermanence/module.nix
+++ b/modules/by-name/im/impermanence/module.nix
@@ -10,32 +10,6 @@ in {
directories = lib.mkOption {
type = lib.types.listOf lib.types.str;
- default =
- [
- "/etc/nixos"
- "/var/log"
- "/var/lib/systemd"
- "/var/lib/nixos"
- ]
- ++ lib.optional config.networking.networkmanager.enable "/etc/NetworkManager"
- ++ lib.optional config.boot.lanzaboote.enable "/etc/secureboot"
- ++ lib.optional config.hardware.bluetooth.enable "/var/lib/bluetooth"
- ++ lib.optional config.virtualisation.waydroid.enable "/var/lib/waydroid"
- ++ lib.optional config.services.postgresql.enable "/var/lib/postgresql";
-
- defaultText = lib.literalExpression ''
- [
- "/etc/nixos"
- "/var/log"
- "/var/lib/systemd"
- "/var/lib/nixos"
- ]
- ++ lib.optional config.networking.networkmanager.enable "/etc/NetworkManager"
- ++ lib.optional config.boot.lanzaboote.enable "/etc/secureboot"
- ++ lib.optional config.hardware.bluetooth.enable "/var/lib/bluetooth"
- ++ lib.optional config.virtualisation.waydroid.enable "/var/lib/waydroid"
- ++ lib.optional config.services.postgresql.enable "/var/lib/postgresql"
- '';
description = "The directories to persist";
};
};