23 lines
452 B
Nix
23 lines
452 B
Nix
{ ... }:
|
|
{
|
|
programs.wofi = {
|
|
enable = true;
|
|
settings = {
|
|
width = 500;
|
|
height = 600;
|
|
location = "bottom";
|
|
show = "drun";
|
|
prompt = "...";
|
|
filter_rate = 100;
|
|
allow_markup = true;
|
|
no_actions = true;
|
|
halign = "fill";
|
|
orientation = "vertical";
|
|
content_halign = "fill";
|
|
insensitive = true;
|
|
allow_images = true;
|
|
image_size = 40;
|
|
gtk_dark = true;
|
|
};
|
|
};
|
|
}
|