From 323973ecbb71b6186290a798af1c8a2c91299e18 Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Fri, 23 Feb 2024 03:23:54 +0100 Subject: apps/static-users: init --- apps/static-users/appspec.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 apps/static-users/appspec.nix (limited to 'apps/static-users/appspec.nix') 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 = { }; + }; +} -- cgit v1.2.3