mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-29 10:14:35 +00:00
18 lines
306 B
Nix
18 lines
306 B
Nix
|
_: {
|
||
|
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}
|
||
|
'';
|
||
|
};
|
||
|
}
|