From 1cdd082f13e4c93c5d4dd3ccd56451b9ce6fea85 Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Fri, 27 Dec 2024 15:47:32 +0200 Subject: [PATCH] Added quotes so nix doesn't think it's a path --- nginx.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.nix b/nginx.nix index a415c0b..57f6c5c 100644 --- a/nginx.nix +++ b/nginx.nix @@ -8,7 +8,7 @@ }]; locations."/" = { index = "index.html"; - root = /srv/website; + root = "/srv/website"; }; }; };