Can anyone help?

Currently getting my ass kicked by #systemd timers on #nixos

This keeps failing with an exit-code, status 127.

Just want to git pull this repo. It works if I run the command manually. Any ideas what i'm doing wrong?

Reply to this note

Please Login to reply.

Discussion

127 means (command) not found.

Make sure, the command in question is known in the executing environment.

To test this, you might wanna temporarily use absolute paths. Since this approach is naturally never a good idea in NixOS, you have to change it afterwards, if you find out it works this way & then fix the issue with the environment.

You also might wanna present a link to a pastebin-like website, where the full output & log is viewable. :)

You should replace `${pkgs.coreutils}/bin/git` with `${lib.getExe pkgs.git}`