summaryrefslogtreecommitdiff
path: root/hosts/auth/authentik.nix
blob: 00589ab5250be89f94d01ca22bf8fb0aaf7d0d9c (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";
    };
  };
}