diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-23 08:07:11 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-26 04:36:24 +0100 |
commit | 597ec76b7cb1527b1df215548a8f50bddccd8606 (patch) | |
tree | 9ea88686f3b15689e222a1d286a6726f6ce59ace /apps/cgit | |
parent | d2873fe0f6a117d7157c2a6f204a864f9edeb668 (diff) |
apps/authelia: init
Diffstat (limited to 'apps/cgit')
-rw-r--r-- | apps/cgit/appspec.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/cgit/appspec.nix b/apps/cgit/appspec.nix index 243f477..a7744d5 100644 --- a/apps/cgit/appspec.nix +++ b/apps/cgit/appspec.nix @@ -25,12 +25,12 @@ default = { }; }; users = lib.mkOption { - type = lib.types.nullOr (lib.types.attrsOf (lib.types.submodule { + type = lib.types.attrsOf (lib.types.submodule { options.publicKeyFile = lib.mkOption { - type = lib.types.str; + type = lib.types.nullOr lib.types.str; }; - })); - default = null; + }); + default = { }; }; }; } |