nixos-config/nixos/configs/workhorse/castget.nix

23 lines
420 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, lib, ... }:
let
home = "/home/syncthing/podcasts";
2021-11-01 09:20:42 +01:00
in
{
2019-10-24 02:20:38 +02:00
custom.services.castget = {
enable = true;
user = "root";
feeds = {
Alternativlos = {
url = "https://alternativlos.org/alternativlos.rss";
spool = "${home}/alternativlos";
};
gegenstandpunkt = {
url = "https://pc.argudiss.de/";
spool = "${home}/GegenStandpunkt";
};
};
};
}