fix: add coreutils to wynne-deploy PATH

systemd services have an empty PATH by default, so basic
commands (rm, cp, chmod) were not found.
This commit is contained in:
Lewis Wynne 2026-04-05 02:19:52 +01:00
parent 69f4bacb4b
commit 95f10812c2

View file

@ -30,7 +30,7 @@ in
systemd.services.wynne-deploy = {
description = "Build wynne.rs from source";
path = [ pkgs.nodejs pkgs.pnpm ];
path = with pkgs; [ coreutils nodejs pnpm ];
serviceConfig = {
Type = "oneshot";
ExecStart = deployScript;