diff options
| author | Grigory Shipunov | 2025-01-21 00:14:24 +0000 |
|---|---|---|
| committer | Grigory Shipunov | 2025-01-21 00:14:24 +0000 |
| commit | ea75d168e423dfd71d6122d3c9540223585c662e (patch) | |
| tree | 03b56ab92278bd1aab17f285b92541f3cebe46a7 /hosts/auth/authentik.nix | |
| parent | 30d2e7fafc7ea9e89ae26cedeab0fcbdf457bc3d (diff) | |
deploy authentik, cleanup
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"; + }; + }; +} |
