diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-03 20:27:51 +0200 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-06-03 20:27:51 +0200 |
| commit | 047deaf5bf14f1072a4460213e7d952c14c10ea0 (patch) | |
| tree | 26586e5f9b7f7680d33e954d2d0f80c8a1bf0323 /modules | |
| parent | pkgs/con2pdf: Remove from system closure (diff) | |
| download | nixos-config-047deaf5bf14f1072a4460213e7d952c14c10ea0.zip | |
modules/ausweisapp: Init
Diffstat (limited to '')
| -rw-r--r-- | modules/by-name/au/ausweisapp/module.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/by-name/au/ausweisapp/module.nix b/modules/by-name/au/ausweisapp/module.nix new file mode 100644 index 00000000..3a89db9d --- /dev/null +++ b/modules/by-name/au/ausweisapp/module.nix @@ -0,0 +1,18 @@ +{ + config, + lib, + libraries, + ... +}: let + cfg = config.soispha.programs.ausweisapp; +in { + options.soispha.programs.ausweisapp = { + enable = libraries.base.options.mkEnable "AusweisApp"; + }; + + config = lib.mkIf cfg.enable { + soispha.impermanence.userDirectories = [ + ".config/AusweisApp" + ]; + }; +} |
