diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-23 03:23:54 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-26 04:36:24 +0100 |
commit | 323973ecbb71b6186290a798af1c8a2c91299e18 (patch) | |
tree | f041e769aa593be6aab4e0f765fdd6c9b51164b7 /apps/static-users/capabilities.nix | |
parent | 1057e0990509faa333843c7ab52536a95d50e7cc (diff) |
apps/static-users: init
Diffstat (limited to 'apps/static-users/capabilities.nix')
-rw-r--r-- | apps/static-users/capabilities.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/static-users/capabilities.nix b/apps/static-users/capabilities.nix new file mode 100644 index 0000000..de8d1f0 --- /dev/null +++ b/apps/static-users/capabilities.nix @@ -0,0 +1,8 @@ +{ appConfig, lib, ... }: +lib.concatMapAttrs + (name: attrs: lib.optionalAttrs (attrs ? publicKeyFile) { + ${name} = { + inherit (attrs) publicKeyFile; + }; + }) + appConfig.users |