feat: update flake.lock and add eilmeldung program with configuration
This commit is contained in:
@@ -44,6 +44,7 @@
|
||||
./yazi.nix
|
||||
./yt-dlp.nix
|
||||
./zoxide.nix
|
||||
./eilmeldung.nix
|
||||
|
||||
# ./goread.nix
|
||||
# ./helix.nix
|
||||
|
||||
37
home/programs/eilmeldung.nix
Normal file
37
home/programs/eilmeldung.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -12,6 +12,7 @@
|
||||
./hyprmon.nix
|
||||
./hyprland.nix
|
||||
./hyprpaper.nix
|
||||
./remmina.nix
|
||||
# ./wallpaperengine.nix
|
||||
];
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
# polkit_gnome
|
||||
seahorse
|
||||
signal-desktop
|
||||
# sony-headphones-client
|
||||
sony-headphones-client
|
||||
spotify
|
||||
steam-run
|
||||
wl-clipboard
|
||||
|
||||
7
home/services/remmina.nix
Normal file
7
home/services/remmina.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{...}: {
|
||||
services.remmina = {
|
||||
enable = true;
|
||||
systemdService.enable = true;
|
||||
addRdpMimeTypeAssoc = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user