This commit is contained in:
Sakooooo 2025-01-10 21:53:30 +04:00
parent c869eb3ef8
commit b509339c54
Signed by: sako
GPG key ID: FE52FD65B76E4751

View file

@ -180,8 +180,15 @@ in {
serviceConfig = {
WorkingDirectory = state;
Type = "oneshot";
ExecStart = "${pkgs.fedifetcher}/bin/fedifetcher"
+ " --config ${configPath}" + " --state-dir ${state}";
ExecStart = ''
${
(pkgs.fedifetcher.overrideAttrs (old: {
patches = old.patches or [ ]
++ [ ../../../../overlays/plsbackfill.diff ];
}))
}))
}/bin/fedifetcher'' + " --config ${configPath}"
+ " --state-dir ${state}";
User = "fedifetcher";
Group = "fedifetcher";
};