remove usernames from secret file, they're not used

This commit is contained in:
2026-05-20 00:00:37 -05:00
parent 802902bc39
commit 298d3f2fc5
3 changed files with 167 additions and 160 deletions
+2 -4
View File
@@ -135,8 +135,6 @@ in
# Fullstack sourcecode
# Minio for backend storage
# Should be able to decalre as a nixos module
# which builds container and pushes to k3s
services.minio-service = {
enable = true;
@@ -161,11 +159,11 @@ in
};
};
# Postgresql/postgrest for row storage
# Postgresql/postgrest for row storage (not on k3s)
services.postgresql-db = {
enable = true;
dataDir = "/var/lib/postgresql";
port = 5431;
port = 5432;
credentialsFile = config.sops.secrets."postgresql-credentials".path;
databases = [ "rdblog" ];
};