From 1057e0990509faa333843c7ab52536a95d50e7cc Mon Sep 17 00:00:00 2001 From: Alexander Foremny Date: Fri, 23 Feb 2024 03:23:46 +0100 Subject: modules/fysiweb-capabilities: init --- modules/fysiweb-capabilities/default.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 modules/fysiweb-capabilities/default.nix (limited to 'modules') diff --git a/modules/fysiweb-capabilities/default.nix b/modules/fysiweb-capabilities/default.nix new file mode 100644 index 0000000..cbb57eb --- /dev/null +++ b/modules/fysiweb-capabilities/default.nix @@ -0,0 +1,24 @@ +{ config, lib, ... }: +let + allApps = lib.concatMap lib.attrValues (lib.concatMap lib.attrValues (lib.attrValues config.fysiweb-apps)); +in +{ + options.fysiweb.capabilities.ssh-credentials = lib.mkOption { + type = lib.types.attrsOf (lib.types.attrsOf (lib.types.submodule { + options.publicKeyFile = lib.mkOption { + type = lib.types.str; + }; + })); + default = { }; + }; + config = { + fysiweb.capabilities.ssh-credentials = lib.listToAttrs (lib.concatMap + (appConfig: + let path = (toString ../../apps) + "/${appConfig.appName}/capabilities.nix"; in + lib.optionals (lib.pathIsRegularFile path) [ + (lib.nameValuePair appConfig.appId + (import path { inherit appConfig lib; })) + ]) + allApps); + }; +} -- cgit v1.2.3