From 95f10812c222039437c9161f1ea7ce8a9f010744 Mon Sep 17 00:00:00 2001 From: lew Date: Sun, 5 Apr 2026 02:19:52 +0100 Subject: [PATCH] fix: add coreutils to wynne-deploy PATH systemd services have an empty PATH by default, so basic commands (rm, cp, chmod) were not found. --- hosts/lab/wynne.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/lab/wynne.nix b/hosts/lab/wynne.nix index 1341ce9..8cf3888 100644 --- a/hosts/lab/wynne.nix +++ b/hosts/lab/wynne.nix @@ -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;