From ea75d168e423dfd71d6122d3c9540223585c662e Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Tue, 21 Jan 2025 00:14:24 +0000 Subject: deploy authentik, cleanup --- hosts/auth/authentik.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 hosts/auth/authentik.nix (limited to 'hosts/auth/authentik.nix') 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"; + }; + }; +} -- cgit v1.3.1