nixos-config/modules/home/fuzzel.nix

25 lines
495 B
Nix

{lib, ...}: {
programs.fuzzel = {
enable = true;
settings = {
main = {
use-bold = true;
line-height = 25;
fields = "name,generic,comment,categories,filename,keywords";
terminal = "kitty";
prompt = "'🔍 '";
layer = "top";
lines = 10;
width = 35;
horizontal-pad = 25;
inner-pad = 5;
dpi-aware = false;
};
border = {
radius = 15;
width = 3;
};
};
};
}