Ensure that /var/www exists.

This commit is contained in:
Nolan Darilek 2025-02-19 12:28:42 -06:00
parent 77074c7d87
commit 56557ab5d1

View file

@ -69,7 +69,12 @@ in
}; };
}; };
systemd.services."gitea-runner-${utils.escapeSystemdPath "${name}-linux"}".serviceConfig.ReadWritePaths = "/var/www"; systemd.tmpfiles.rules = [
"d /var/www 0775 root root"
];
systemd.services."gitea-runner-${utils.escapeSystemdPath "${name}-linux"}".serviceConfig.ReadWritePaths =
"/var/www";
environment.systemPackages = with pkgs; [ unstable.forgejo-runner ]; environment.systemPackages = with pkgs; [ unstable.forgejo-runner ];