nixdots/home/programs/graphical/launchers/wofi/default.nix

18 lines
306 B
Nix
Raw Normal View History

2024-06-10 17:19:30 +00:00
_: {
programs.wofi = {
enable = true;
settings = {
width = "40%";
height = "30%";
show = "drun";
prompt = "Search";
allow_images = true;
allow_markup = true;
insensitive = true;
};
style = ''
${builtins.readFile ./style.css}
'';
};
}