tasks/multimedia-archive: update job queue for archivebox service

This commit is contained in:
Gabriel Arazas 2022-11-26 20:52:19 +08:00
parent 5f32e4fd98
commit a9080eff06

View File

@ -126,16 +126,9 @@ in
withDependencies = true; withDependencies = true;
webserver.enable = true; webserver.enable = true;
jobs = { jobs = mkJobs {
arts = { db = lib.importJSON ./data/jobs.archivebox.json;
urls = [ } // {
"https://www.davidrevoy.com/feed/rss"
"https://librearts.org/index.xml"
];
startAt = "monthly";
persistent = true;
};
computer = { computer = {
urls = [ urls = [
"https://blog.mozilla.org/en/feed/" "https://blog.mozilla.org/en/feed/"
@ -152,17 +145,6 @@ in
startAt = "weekly"; startAt = "weekly";
persistent = true; persistent = true;
}; };
projects = {
urls = [
"https://veloren.net/rss.xml"
"https://guix.gnu.org/feeds/blog.atom"
"https://fedoramagazine.org/feed/"
"https://nixos.org/blog/announcements-rss.xml"
];
# Practically every 14 days.
startAt = "Mon *-*-1/14";
};
}; };
}; };