1
1
Fork 0
deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love.nix

61 lines
1.8 KiB
Nix
Raw Normal View History

2023-08-02 14:37:36 -04:00
{ pkgs, ... }:
2023-05-08 18:39:01 -04:00
let
2023-08-11 15:19:26 -04:00
PROJECT_ROOT = "/workspace/deployed-nixos-server-and-apps/nixos-apps";
2023-05-08 18:39:01 -04:00
in
{
services.caddy = {
enable = true;
virtualHosts = {
"cutesealfanpage.love" = {
serverAliases = [ "www.cutesealfanpage.love" ];
extraConfig = ''
2023-08-09 21:13:29 -04:00
root * ${PROJECT_ROOT}/cutesealfanpage.love/_site
2023-05-08 18:39:01 -04:00
file_server
'';
};
};
};
2023-05-08 18:39:01 -04:00
systemd.services = {
cutesealfanpage-hakyll-site = {
enable = true;
description = "The hakyll executable that rebuilds the site when a new blog post is created.";
2023-09-20 00:32:00 -04:00
script = ''
cd /workspace/deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love
nix run .#hakyll-site
'';
# serviceConfig = {
# ExecStart = "cd /workspace/deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love; ./hakyll-site";
# };
};
cutesealfanpage-generatePosts = {
enable = true;
description = "The haskell script that creates the new post of the day.";
startAt = "08:12:42";
2023-09-20 00:32:00 -04:00
script = ''
cd /workspace/deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love
nix run .#generateSealPosts
'';
# serviceConfig = {
# ExecStart = "cd /workspace/deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love; ./generatePosts";
# };
};
};
2023-08-02 11:55:31 -04:00
# when in doubt, clear away the certs with
# sudo rm -rf /var/lib/acme/
security.acme.acceptTerms = true;
2023-08-02 14:37:36 -04:00
security.acme.defaults.email = "admin@cutesealfanpage.love";
2023-08-02 11:55:31 -04:00
# uncomment this to use the staging server
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
2023-08-08 18:11:54 -04:00
# services.cron = {
# enable = true;
# systemCronJobs = [
# "12 12 * * * alice . /etc/profile; ${pkgs.newSealPost} > /home/alice/logs/backup.log 2>&1"
# ];
# };
}