From d2873fe0f6a117d7157c2a6f204a864f9edeb668 Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Fri, 23 Feb 2024 03:33:41 +0100 Subject: apps/cgit: add `users` option --- apps/cgit/appspec.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'apps/cgit/appspec.nix') 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; + }; }; } -- cgit v1.2.3