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