dotfiles/nix/programs/newsboat.nix

65 lines
1.7 KiB
Nix
Raw Normal View History

2022-09-02 23:42:00 +02:00
{
config,
pkgs,
...
}: {
programs.newsboat = {
enable = true;
2023-08-08 15:28:26 +02:00
maxItems = 10000;
2022-09-02 23:42:00 +02:00
autoReload = true;
2023-08-08 15:28:26 +02:00
reloadTime = 10; # minutes
2022-09-02 23:42:00 +02:00
urls = [
{
title = "drewdevault's blog";
url = "https://drewdevault.com/blog/index.xml";
}
{
title = "The Go Blog";
url = "https://blog.golang.org/feed.atom";
}
{
title = "emersion";
url = "https://emersion.fr/blog/atom.xml";
2023-08-08 15:28:06 +02:00
tags = [
"go"
"sourcehut"
];
2022-09-02 23:42:00 +02:00
}
{
title = "sockpupet";
url = "https://sockpuppet.org/atom.xml";
}
{
title = "latacora";
url = "https://latacora.micro.blog/feed.xml";
}
{
title = "archlinux news";
url = "https://archlinux.org/feeds/news/";
}
{url = "https://torresjrjr.com/archive/index.xml";}
2022-11-07 15:28:08 +01:00
{url = "https://gitea-open-letter.coding.social/updates/atom.xml";}
2022-09-06 21:37:02 +02:00
{url = "https://www.kalzumeus.com/feed.xml";}
{url = "https://senan.xyz/feed.xml";}
{url = "https://www.paritybit.ca/feed.xml";}
{url = "https://.com/index.xml";}
2022-09-02 23:42:00 +02:00
{url = "http://nullr0ute.com/feed/";}
{url = "https://yurichev.org/rss.xml";}
2023-08-08 15:28:06 +02:00
{
url = "https://sourcehut.org/blog/index.xml";
tags = ["sourcehut"];
}
2022-09-02 23:42:00 +02:00
{url = "https://openwrt.org/feed.php?type=rss&mode=list&sort=date&ns=advisory&linkto=current&content=html";}
{url = "https://sfconservancy.org/feeds/blog/";}
2023-08-08 15:27:53 +02:00
{
url = "http://feeds.bbci.co.uk/news/rss.xml";
tags = ["news"];
}
{
url = "https://www.wired.com/feed/rss";
tags = ["news"];
}
2022-09-02 23:42:00 +02:00
];
};
}