nix(home-manager): add newsboat config

This commit is contained in:
surtur 2022-09-02 23:42:00 +02:00
parent 67a517cb6a
commit 83e0c28c54
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 45 additions and 0 deletions

@ -38,6 +38,10 @@
}; };
}; };
imports = [
./nix/programs/newsboat.nix
];
home.file = { home.file = {
".config/kitty/kitty.conf" = { ".config/kitty/kitty.conf" = {
source = .config/kitty/kitty.conf; source = .config/kitty/kitty.conf;

41
nix/programs/newsboat.nix Normal file

@ -0,0 +1,41 @@
{
config,
pkgs,
...
}: {
programs.newsboat = {
enable = true;
autoReload = true;
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";
}
{
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";}
{url = "http://nullr0ute.com/feed/";}
{url = "https://sourcehut.org/blog/index.xml";}
{url = "https://openwrt.org/feed.php?type=rss&mode=list&sort=date&ns=advisory&linkto=current&content=html";}
{url = "https://sfconservancy.org/feeds/blog/";}
];
};
}