8 lines
185 B
Nix
8 lines
185 B
Nix
{ config, ... }:
|
|
{
|
|
services.authentik = {
|
|
enable = true;
|
|
environmentFile = config.sops.secrets."authentik/envfile".path;
|
|
settings.disable_startup_analytics = true;
|
|
};
|
|
}
|