From 610db6ab0c9787e4195cf7372f0649c295e1bd72 Mon Sep 17 00:00:00 2001 From: zack Date: Mon, 21 Oct 2024 19:53:59 -0400 Subject: [PATCH] fix dburl --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8171bd1..3cb65f5 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; };