fix dburl

This commit is contained in:
zack 2024-10-21 19:53:59 -04:00
parent d6db331166
commit 610db6ab0c
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35

View file

@ -77,7 +77,7 @@
dbUrl = mkOption {
type = types.string;
default = "postgresql://${config.services.postgres.user}:${config.services.postgres.password}@${config.services.postgres.host}:${toString config.services.postgres.port}/zoeyscomputer_prod";
default = "postgresql://${config.services.postgresql.user}:${config.services.postgresql.password}@${config.services.postgresql.host}:${toString config.services.postgresql.port}/zoeyscomputer_prod";
description = "Postgres Databaase URL";
};