feat(home): adjust vicinae and eilmeldung configurations feat(neovim): enable folding in neovim configuration fix(nixos): disable resolved dns and remove fallback dns on tako chore(nixos): add pihole and resolved services to tsuba chore(home): remove unused packages from programs chore(nixos): add gamescope-wsi and vulkan-tools to steam configuration chore(nixos): update navidrome service with sops integration and systemd tmpfiles chore(darwin): use dynamic user in shiro configuration chore(secrets): add lastfm and pihole secrets to secrets.yaml
42 lines
747 B
Nix
42 lines
747 B
Nix
{
|
|
inputs,
|
|
device,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.eilmeldung.homeManager.default
|
|
];
|
|
programs.eilmeldung = {
|
|
enable = device.is "ryu";
|
|
|
|
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"
|
|
];
|
|
};
|
|
};
|
|
}
|