nixnew/modules/user/modules/wofi/default.nix
2023-06-26 00:16:52 -07:00

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;
};
};
}