nix-config/microvms/authentik/authentik.nix

9 lines
185 B
Nix
Raw Normal View History

2025-01-12 21:32:36 +01:00
{ config, ... }:
{
services.authentik = {
enable = true;
environmentFile = config.sops.secrets."authentik/envfile".path;
settings.disable_startup_analytics = true;
};
}