summaryrefslogtreecommitdiff
path: root/microvms/auth/authentik.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2026-07-26 20:32:54 +0000
committerGrisha Shipunov2026-07-26 20:32:54 +0000
commitc771b71197571454e496e7ece01dcfd5dff8171f (patch)
tree1ff5796caceb1a1d4e82a8c72753aefa4aed39ac /microvms/auth/authentik.nix
parent1ce66ae49e995b1dce2ad801de200f241459459c (diff)
authentik: yeetscaledown
Diffstat (limited to 'microvms/auth/authentik.nix')
-rw-r--r--microvms/auth/authentik.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/microvms/auth/authentik.nix b/microvms/auth/authentik.nix
deleted file mode 100644
index a1257ee..0000000
--- a/microvms/auth/authentik.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ config, inputs, ... }:
-{
- imports = [
- inputs.authentik-nix.nixosModules.default
- ];
- 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";
- postgresql.host = "/run/postgresql";
- };
- };
-}