[nixbox] Use fuzzel as a launcher.

This commit is contained in:
jmug
2026-01-18 01:42:09 -08:00
parent 67f7e8fee8
commit cf42f173d5
2 changed files with 19 additions and 3 deletions
+3 -3
View File
@@ -5,12 +5,12 @@
./hypridle.nix ./hypridle.nix
./walker.nix ./walker.nix
./waybar.nix ./waybar.nix
./fuzzel.nix
]; ];
# Screenshots. # Screenshots.
home.packages = with pkgs; [ home.packages = with pkgs; [
hyprshot hyprshot
hyprlauncher
]; ];
# Notifications daemon. # Notifications daemon.
services.swaync.enable = true; services.swaync.enable = true;
@@ -25,7 +25,7 @@
"$terminal" = "ghostty"; "$terminal" = "ghostty";
"$fileManager" = "dolphin"; # TODO: Change. "$fileManager" = "dolphin"; # TODO: Change.
"$menu" = "hyprlauncher"; "$menu" = "fuzzel";
env = [ env = [
"XCURSOR_SIZE,24" "XCURSOR_SIZE,24"
@@ -180,7 +180,7 @@
"$mainMod, mouse_up, workspace, e-1" "$mainMod, mouse_up, workspace, e-1"
# App launcher # App launcher
"$mainMod, space, exec, pkil $menu || $menu" "$mainMod, space, exec, pkil fuzzel || fuzzel"
]; ];
bindm = [ bindm = [
+16
View File
@@ -0,0 +1,16 @@
{ pkgs, ... } : {
programs.fuzzel = {
enable = true;
settings = {
main = {
match-mode = "fzf";
exit-on-keyboard-focus-loss = "yes";
};
colors = {
background = "1e1e2edd";
text = "cdd6f4ff";
selection = "45475add";
};
};
};
}