HandlerOne updates

This commit is contained in:
TheWanderingCrow 2026-02-03 11:24:31 -05:00
parent 251ef33d18
commit 85478b2f6c
2 changed files with 11 additions and 4 deletions

View file

@ -8,6 +8,10 @@ let
sopsFolder = builtins.toString inputs.nix-secrets + "/sops";
in
{
sops.secrets."pocket-id/encryption_key" = {
sopsFile = "${sopsFolder}/services.yaml";
};
disabledModules = [
"${inputs.nixpkgs}/nixos/modules/services/security/pocket-id.nix"
];
@ -30,5 +34,8 @@ in
APP_URL = "https://auth.wanderingcrow.net";
TRUST_PROXY = true;
};
credentials = {
ENCRYPTION_KEY = config.sops.secrets."pocket-id/encryption_key".path;
};
};
}