mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
22 lines
460 B
Nix
22 lines
460 B
Nix
{ config, ... }:
|
|
let
|
|
domain = "auth.${config.networking.domain}";
|
|
in
|
|
{
|
|
age.secrets.authentik = {
|
|
file = ../../../../secrets/nuc/authentik.age;
|
|
};
|
|
services.authentik = {
|
|
enable = true;
|
|
environmentFile = config.age.secrets.authentik.path;
|
|
# nginx = {
|
|
# enable = true;
|
|
# enableACME = true;
|
|
# host = domain;
|
|
# };
|
|
};
|
|
services.caddy.virtualHosts."${domain}".extraConfig = ''
|
|
reverse_proxy localhost:9000
|
|
'';
|
|
}
|