18 lines
333 B
Nix
18 lines
333 B
Nix
{
|
|
programs.wofi = {
|
|
enable = true;
|
|
style = ./style.css;
|
|
settings = {
|
|
show = "drun";
|
|
width = 750;
|
|
height = 400;
|
|
always_parse_args = true;
|
|
show_all = false;
|
|
term = "foot";
|
|
hide_scroll = true;
|
|
print_command = true;
|
|
insensitive = true;
|
|
columns = 1;
|
|
};
|
|
};
|
|
}
|