diff options
Diffstat (limited to 'hosts/auth/authentik.nix')
| -rw-r--r-- | hosts/auth/authentik.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hosts/auth/authentik.nix b/hosts/auth/authentik.nix new file mode 100644 index 0000000..00589ab --- /dev/null +++ b/hosts/auth/authentik.nix @@ -0,0 +1,13 @@ +{ config, ... }: +{ + sops.secrets."authentik/env" = {}; + services.authentik = { + enable = true; + environmentFile = config.sops.secrets."authentik/env".path; + settings = { + log_level = "debug"; + disable_startup_analytics = true; + avatars = "initials"; + }; + }; +} |
