[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
+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";
};
};
};
}