summaryrefslogtreecommitdiff
path: root/hosts/auth/authentik.nix
diff options
context:
space:
mode:
authorGrigory Shipunov2025-01-21 00:14:24 +0000
committerGrigory Shipunov2025-01-21 00:14:24 +0000
commitea75d168e423dfd71d6122d3c9540223585c662e (patch)
tree03b56ab92278bd1aab17f285b92541f3cebe46a7 /hosts/auth/authentik.nix
parent30d2e7fafc7ea9e89ae26cedeab0fcbdf457bc3d (diff)
deploy authentik, cleanup
Diffstat (limited to 'hosts/auth/authentik.nix')
-rw-r--r--hosts/auth/authentik.nix13
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";
+ };
+ };
+}