From 07c6476fbf40396e0bcd86a662629b83bc800e30 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sun, 10 Dec 2023 14:58:56 +0100 Subject: [PATCH] module: make authentikComponents a simple attrset --- module.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/module.nix b/module.nix index 7621d17..26722fc 100644 --- a/module.nix +++ b/module.nix @@ -25,14 +25,8 @@ in authentik = { enable = mkEnableOption "authentik"; - authentikComponents = { - celery = mkOption { type = types.package; }; - staticWorkdirDeps = mkOption { type = types.package; }; - migrate = mkOption { type = types.package; }; - pythonEnv = mkOption { type = types.package; }; - frontend = mkOption { type = types.package; }; - gopkgs = mkOption { type = types.package; }; - docs = mkOption { type = types.package; }; + authentikComponents = mkOption { + type = types.attrsOf types.package; }; settings = mkOption {