aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/au/ausweisapp/module.nix
blob: 3a89db9d01dafcaa6a9da78b8733e4401f5e6428 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"
    ];
  };
}