From 253a37e09e0d034f35e09be7f36e94b3e1bd3c2e Mon Sep 17 00:00:00 2001 From: Bill Ewanick Date: Wed, 9 Aug 2023 19:15:26 -0400 Subject: [PATCH] Fix scripts --- nixos-apps/cutesealfanpage.love.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos-apps/cutesealfanpage.love.nix b/nixos-apps/cutesealfanpage.love.nix index ef757d3..a8563f0 100644 --- a/nixos-apps/cutesealfanpage.love.nix +++ b/nixos-apps/cutesealfanpage.love.nix @@ -30,6 +30,7 @@ in enable = true; description = "The hakyll executable that rebuilds the site when a new blog post is created."; script = '' + cd ${PROJECT_ROOT} nix run .#hakyll-site -- watch --no-server ''; }; @@ -39,6 +40,7 @@ in description = "The haskell script that creates the new post of the day."; startAt = "08:12:42"; script = '' + cd ${PROJECT_ROOT} nix run .#generateSealPosts ''; };