From 82c5c26d9d8d7df1250e70ad9a834299ef7a321e Mon Sep 17 00:00:00 2001 From: Jimbo Date: Tue, 10 Sep 2024 21:43:17 -0400 Subject: [PATCH] Fix a fuckup --- nixos/server/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/server/nextcloud.nix b/nixos/server/nextcloud.nix index 9b95df2..a553091 100644 --- a/nixos/server/nextcloud.nix +++ b/nixos/server/nextcloud.nix @@ -8,7 +8,7 @@ https = true; config = { adminuser = "jimbo"; - adminpassFile = pkgs.writeText "nextpass" outputs.secrets.nextcloudPass; + adminpassFile = "${pkgs.writeText "nextpass" outputs.secrets.nextcloudPass}"; }; settings = { trusted_proxies = [ "127.0.0.1" ];