home-manager | refactor a bit, added fuzzel

This commit is contained in:
Don Harper 2023-07-23 10:10:16 -05:00
parent 9cffac9351
commit f2a8ec8606
5 changed files with 42 additions and 9 deletions

28
home/fuzzel.nix Normal file
View file

@ -0,0 +1,28 @@
{ config, pkgs, ... }:
{
programs.fuzzel = {
enable = true;
settings = {
main = {
icon-theme = "Papirus-Dark";
width = 50;
font = "Ubuntu:style=Bold:size=12, Hack:weight=bold:size=12";
fields = "name,generic,comment,categories,filename,keywords";
prompt = " ";
layer = "overlay";
};
colors = {
background = "282a36fa";
selection = "3d4474fa";
border = "fffffffa";
};
border = {
radius = 20;
};
dmenu = {
exit-immediately-if-empty = true;
mode = "index";
};
};
};
}