get rid of default creds
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 10s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 3m37s

This commit is contained in:
2025-12-23 22:57:07 -05:00
parent a8572caa7f
commit 424003027e
2 changed files with 3 additions and 6 deletions

View File

@@ -12,8 +12,6 @@ let
in
{
"${ctype}__POSTGRES__HOST" = "host.docker.internal";
"${ctype}__POSTGRES__USER" = "SOPS_ONLY";
"${ctype}__POSTGRES__PASSWORD" = "SOPS_ONLY";
"${ctype}__POSTGRES__PORT" = toString config.services.postgresql.settings.port;
};
in
@@ -57,8 +55,6 @@ in
PGID = "100";
TZ = "America/New_York";
POSTGRES_HOST = "host.docker.internal";
POSTGRES_USER = "SOPS_ONLY";
POSTGRES_PASSWORD = "SOPS_ONLY";
POSTGRES_PORT = toString config.services.postgresql.settings.port;
};
environmentFiles = [
@@ -212,8 +208,6 @@ in
DB_TYPE = "postgres";
DB_HOST = "host.docker.internal";
DB_PORT = toString config.services.postgresql.settings.port;
DB_USER = "SOPS_ONLY";
DB_PASS = "SOPS_ONLY";
};
environmentFiles = [
config.sops.secrets."docker/jellyseerr".path

View File

@@ -33,6 +33,9 @@
8686
8787
5055
# temp postgres
5432
];
}