This repository has been archived on 2025-11-26. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/modules/home/fuzzel.nix

24 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;
};
};
};
}