feat(newsboat): setup newsboat
This commit is contained in:
parent
7c58a19322
commit
ea6ce557ca
3 changed files with 24 additions and 1 deletions
|
@ -44,6 +44,7 @@
|
||||||
"data/uni"
|
"data/uni"
|
||||||
"direnv/.local/share/direnv"
|
"direnv/.local/share/direnv"
|
||||||
"gpg/.gnupg"
|
"gpg/.gnupg"
|
||||||
|
"newsboat/.local/share/newsboat"
|
||||||
"ssh/.ssh"
|
"ssh/.ssh"
|
||||||
"trash/.local/share/Trash"
|
"trash/.local/share/Trash"
|
||||||
];
|
];
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
./git.nix
|
./git.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
./mako.nix
|
./mako.nix
|
||||||
|
./newsboat.nix
|
||||||
./nvim.nix
|
./nvim.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
./sway.nix
|
./sway.nix
|
||||||
|
|
|
@ -1,8 +1,29 @@
|
||||||
_: {
|
{lib, ...}: {
|
||||||
home-manager.users.buffet = {
|
home-manager.users.buffet = {
|
||||||
programs.newsboat = {
|
programs.newsboat = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoReload = true;
|
autoReload = true;
|
||||||
|
|
||||||
|
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";
|
||||||
|
matklad = "https://matklad.github.io/feed.xml";
|
||||||
|
sammyette = "https://sammy.is-a.dev/blog/index.xml";
|
||||||
|
xkcd = "https://xkcd.com/rss.xml";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue