infra/nix/modules/authelia.nix

15 lines
295 B
Nix
Raw Permalink Normal View History

2023-10-15 22:16:06 +02:00
{...}: {
services.authelia.instances = {
main = {
enable = true;
settings = {
theme = "dark";
default_2fa_method = "totp";
log.level = "debug";
server.disable_healthcheck = false;
telemetry.metrics.enabled = true;
};
};
};
}