mirror of
https://github.com/zoriya/home-manager.git
synced 2026-06-07 12:15:34 +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:
@@ -549,7 +549,7 @@ in {
|
|||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
ExecStart = let exe = lib.getExe cfg.package;
|
ExecStart = let exe = lib.getExe cfg.package;
|
||||||
in ''
|
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";
|
LockPersonality = "yes";
|
||||||
MemoryDenyWriteExecute = "yes";
|
MemoryDenyWriteExecute = "yes";
|
||||||
|
|||||||
Reference in New Issue
Block a user