summaryrefslogtreecommitdiff
path: root/microvms/authentik/authentik.nix
blob: 309594420f368dd14012e87cb5a0fe28ac673aba (plain)
1
2
3
4
5
6
7
8
{ config, ... }:
{
  services.authentik = {
    enable = true;
    environmentFile = config.sops.secrets."authentik/envfile".path;
    settings.disable_startup_analytics = true;
  };
}