1
1
Fork 0

Don't use relative paths

Bill Ewanick 2023-08-09 21:13:29 -04:00
parent f0c1084b14
commit 1643aaf283
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ in
"cutesealfanpage.love" = {
serverAliases = [ "www.cutesealfanpage.love" ];
extraConfig = ''
root * ../cutesealfanpage.love/_site
root * ${PROJECT_ROOT}/cutesealfanpage.love/_site
file_server
'';
};
@ -22,7 +22,7 @@ in
enable = true;
description = "The hakyll executable that rebuilds the site when a new blog post is created.";
serviceConfig = {
ExecStart = "cd ../cutesealfanpage.love; nix run .#hakyll-site -- watch --no-server";
ExecStart = "cd ${PROJECT_ROOT}/cutesealfanpage.love; nix run .#hakyll-site -- watch --no-server";
};
# script = ''
# cd ${PROJECT_ROOT}/cutesealfanpage.love
@ -35,7 +35,7 @@ in
description = "The haskell script that creates the new post of the day.";
startAt = "08:12:42";
script = ''
cd ../cutesealfanpage.love
cd ${PROJECT_ROOT}/cutesealfanpage.love
${pkgs.nix}/bin/nix run .#generateSealPosts
'';
};