mirror of
https://github.com/nix-community/home-manager
synced 2024-11-13 00:17:10 +00:00
git: fix maintenance service
Call to git-maintenance in the systemd user service was using a erroneous value for exec-path flag. Removing the flag is fine.
This commit is contained in:
parent
1743615b61
commit
2c6a9b3ccf
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ in {
|
|||
Type = "oneshot";
|
||||
ExecStart = let exe = lib.getExe cfg.package;
|
||||
in ''
|
||||
"${exe}" --exec-path="${exe}" for-each-repo --config=maintenance.repo maintenance run --schedule=%i
|
||||
"${exe}" for-each-repo --keep-going --config=maintenance.repo maintenance run --schedule=%i
|
||||
'';
|
||||
LockPersonality = "yes";
|
||||
MemoryDenyWriteExecute = "yes";
|
||||
|
|
Loading…
Reference in a new issue