nix(home-manager): add newsboat config
This commit is contained in:
parent
67a517cb6a
commit
83e0c28c54
4
home.nix
4
home.nix
@ -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
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/";}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user