feat(selfhost/authentik): adding the authentik modules
This commit is contained in:
parent
c36d15318c
commit
edbe524048
7 changed files with 140 additions and 3 deletions
|
|
@ -47,6 +47,14 @@ let
|
|||
lib
|
||||
;
|
||||
};
|
||||
sso = import ./self_host/sso.nix {
|
||||
inherit
|
||||
inputs
|
||||
config
|
||||
pkgs
|
||||
lib
|
||||
;
|
||||
};
|
||||
cfg = config.service.selfhost;
|
||||
in
|
||||
{
|
||||
|
|
@ -56,6 +64,7 @@ in
|
|||
htop
|
||||
ollama
|
||||
monitor
|
||||
sso
|
||||
];
|
||||
|
||||
config = {
|
||||
|
|
@ -89,5 +98,10 @@ in
|
|||
default = false;
|
||||
description = "Enable the nextcloud";
|
||||
};
|
||||
sso = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = "Enable the nextcloud";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue