diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-23 03:33:41 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-26 04:36:24 +0100 |
commit | d2873fe0f6a117d7157c2a6f204a864f9edeb668 (patch) | |
tree | f05455745906bbc5e20bb78cf74360ade55fdfb9 /apps/cgit/appspec.nix | |
parent | 323973ecbb71b6186290a798af1c8a2c91299e18 (diff) |
apps/cgit: add `users` option
Diffstat (limited to 'apps/cgit/appspec.nix')
-rw-r--r-- | apps/cgit/appspec.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/cgit/appspec.nix b/apps/cgit/appspec.nix index 8ea967c..243f477 100644 --- a/apps/cgit/appspec.nix +++ b/apps/cgit/appspec.nix @@ -24,5 +24,13 @@ type = lib.types.attrsOf (lib.types.oneOf [ lib.types.bool lib.types.int lib.types.str ]); default = { }; }; + users = lib.mkOption { + type = lib.types.nullOr (lib.types.attrsOf (lib.types.submodule { + options.publicKeyFile = lib.mkOption { + type = lib.types.str; + }; + })); + default = null; + }; }; } |