2022-09-13 16:07:45 +00:00
|
|
|
{lib, ...}: {
|
2022-09-13 16:07:13 +00:00
|
|
|
home-manager.users.buffet = {
|
|
|
|
programs.newsboat = {
|
|
|
|
enable = true;
|
|
|
|
autoReload = true;
|
2022-09-13 16:07:45 +00:00
|
|
|
|
|
|
|
extraConfig = ''
|
|
|
|
color listnormal black white
|
|
|
|
color listfocus white yellow
|
|
|
|
color listnormal_unread black white bold
|
|
|
|
color listfocus_unread white yellow bold
|
|
|
|
color title white blue bold
|
|
|
|
color info yellow white bold
|
|
|
|
color hint-key default white bold
|
|
|
|
color hint-keys-delimiter default white
|
|
|
|
color hint-separator default white bold
|
|
|
|
color hint-description default white
|
|
|
|
'';
|
|
|
|
|
|
|
|
urls = lib.mapAttrsToList (title: url: {inherit title url;}) {
|
|
|
|
drew = "https://drewdevault.com/blog/index.xml";
|
|
|
|
emersion = "https://emersion.fr/blog/atom.xml";
|
2022-09-16 14:30:40 +00:00
|
|
|
fasterthanlime = "https://fasterthanli.me/index.xml";
|
2022-09-13 16:07:45 +00:00
|
|
|
matklad = "https://matklad.github.io/feed.xml";
|
2022-09-16 14:30:40 +00:00
|
|
|
neeasade = "https://notes.neeasade.net/rss_full.xml";
|
2022-09-13 16:07:45 +00:00
|
|
|
sammyette = "https://sammy.is-a.dev/blog/index.xml";
|
|
|
|
xkcd = "https://xkcd.com/rss.xml";
|
|
|
|
};
|
2022-09-13 16:07:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|