20 lines
355 B
Nix
20 lines
355 B
Nix
{ pkgs, impurity, ... }: {
|
|
programs.wofi = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
mode = "drun";
|
|
style = "${impurity.link ./style.css}";
|
|
prompt = "";
|
|
|
|
insensitive = true;
|
|
allow_images = true;
|
|
hide_scroll = true;
|
|
no_actions = true;
|
|
exec_search = true;
|
|
|
|
width = 500;
|
|
height = 450;
|
|
};
|
|
};
|
|
}
|