deploy authentik, cleanup

This commit is contained in:
Grigory Shipunov 2025-01-21 00:14:24 +00:00
parent 30d2e7fafc
commit ea75d168e4
7 changed files with 258 additions and 58 deletions

13
hosts/auth/authentik.nix Normal file
View file

@ -0,0 +1,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";
};
};
}