rss2email

This commit is contained in:
Sridhar Ratnakumar 2021-04-16 15:08:23 -04:00
parent 666d605e22
commit ffd1560386
2 changed files with 10 additions and 0 deletions

View file

@ -2,5 +2,6 @@
imports = [
./protonmail-bridge.nix
./himalaya-workflow.nix
./rss2email.nix
];
}

View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
services.rss2email = {
enable = true;
to = "srid@srid.ca";
feeds = {
"r-haskell".url = "https://www.reddit.com/r/haskell/top/.rss?t=week";
};
};
}