1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

fix: remove bad exec

This commit is contained in:
will 2024-09-08 21:51:41 +10:00
parent c8f136ecc5
commit f86e6133d9
No known key found for this signature in database

View file

@ -91,7 +91,7 @@ let
serviceConfig.ProgramArguments = mkIf (cmd != "") [
"/bin/sh"
"-c"
"exec /bin/wait4path /nix/store && exec ${cmd}"
"/bin/wait4path /nix/store && exec ${cmd}"
];
serviceConfig.EnvironmentVariables = mkIf (env != {}) env;
};