lmao
This commit is contained in:
parent
c869eb3ef8
commit
b509339c54
|
@ -180,8 +180,15 @@ in {
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
WorkingDirectory = state;
|
WorkingDirectory = state;
|
||||||
Type = "oneshot";
|
Type = "oneshot";
|
||||||
ExecStart = "${pkgs.fedifetcher}/bin/fedifetcher"
|
ExecStart = ''
|
||||||
+ " --config ${configPath}" + " --state-dir ${state}";
|
${
|
||||||
|
(pkgs.fedifetcher.overrideAttrs (old: {
|
||||||
|
patches = old.patches or [ ]
|
||||||
|
++ [ ../../../../overlays/plsbackfill.diff ];
|
||||||
|
}))
|
||||||
|
}))
|
||||||
|
}/bin/fedifetcher'' + " --config ${configPath}"
|
||||||
|
+ " --state-dir ${state}";
|
||||||
User = "fedifetcher";
|
User = "fedifetcher";
|
||||||
Group = "fedifetcher";
|
Group = "fedifetcher";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue