nix-flake/modules/system/homelab/idp.nix
2026-03-01 17:19:07 +07:00

11 lines
No EOL
223 B
Nix

{ homelab, ... }: {
services.pocket-id = {
enable = true;
settings = {
PORT = "1411";
HOST = "127.0.0.1";
APP_URL = "https://auth.proxy.${homelab.domain}";
TRUST_PROXY = true;
};
};
}