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

View File

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