diff options
Diffstat (limited to 'apps/static-users/appspec.nix')
-rw-r--r-- | apps/static-users/appspec.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/static-users/appspec.nix b/apps/static-users/appspec.nix new file mode 100644 index 0000000..6ab5c7d --- /dev/null +++ b/apps/static-users/appspec.nix @@ -0,0 +1,12 @@ +{ lib, ... }: { + description = "static-users"; + endOfLife = null; + options.users = lib.mkOption { + type = lib.types.attrsOf (lib.types.submodule { + options.publicKeyFile = lib.mkOption { + type = lib.types.path; + }; + }); + default = { }; + }; +} |