Files
dotfiles/home/programs/eilmeldung.nix
2025-12-27 21:23:44 +05:30

38 lines
720 B
Nix

{inputs, ...}: {
imports = [
inputs.eilmeldung.homeManager.default
];
programs.eilmeldung = {
enable = true;
settings = {
refresh_fps = 60;
article_scope = "unread";
theme = {
color_palette = {
background = "#1e1e2e";
# // ...
};
};
input_config.mappings = {
"q" = ["quit"];
"j" = ["down"];
"k" = ["up"];
"g g" = ["gotofirst"];
"G" = ["gotolast"];
"o" = ["open" "read" "nextunread"];
};
feed_list = [
"query: \"Today Unread\" today unread"
"query: \"Today Marked\" today marked"
"feeds"
"* categories"
"tags"
];
};
};
}