Files
nixos-blueprint/modules/home/desktop/niri/programs/fuzzel/default.nix
2025-07-13 13:55:45 +03:00

24 lines
486 B
Nix

{
config,
lib,
}: {
enable = true;
settings = {
main = {
terminal = "$TERMINAL -e";
fields = "filename,name,generic,keywords,categories,exec";
dpi-aware = false;
width = 20;
horizontal-pad = 12;
vertical-pad = 12;
show-actions = true;
match-mode = "fuzzy";
icon-theme = config.dconf.settings."org/gnome/desktop/interface".icon-theme;
};
border = lib.mkDefault {
width = 3;
radius = 12;
};
};
}