feat: update flake.lock and add eilmeldung program with configuration

This commit is contained in:
uttarayan21
2025-12-25 06:29:41 +05:30
parent 59eee40635
commit b7c7a875f6
12 changed files with 236 additions and 106 deletions

View File

@@ -44,6 +44,7 @@
./yazi.nix
./yt-dlp.nix
./zoxide.nix
./eilmeldung.nix
# ./goread.nix
# ./helix.nix

View File

@@ -0,0 +1,37 @@
{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"
];
};
};
}