From a3fa679262fcfc19e4295a1530c7acba4cd2a39a Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 27 Oct 2024 12:50:56 -0500 Subject: [PATCH] feat: wiki-js test --- nixos/modules/services/wiki.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/wiki.nix b/nixos/modules/services/wiki.nix index ac23e44..fbf55d5 100755 --- a/nixos/modules/services/wiki.nix +++ b/nixos/modules/services/wiki.nix @@ -14,12 +14,13 @@ in { enable = true; environmentFile = config.sops.secrets."${service.name}-pass".path; settings = { - port = service.ports.port0; - bindIP = localhost; + # port = service.ports.port0; + # bindIP = localhost; db = { - db = "wiki"; - type = "postgres"; + db = "wiki-js"; host = "/run/postgresql"; + type = "postgres"; + user = "wiki-js"; }; }; };