summaryrefslogtreecommitdiff
path: root/hosts/auth/authentik.nix
blob: f60f26920ae794bc3fb886db28435f3ae8195179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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";
    };
  };
}