nix-config/home/common/desktop/wofi.nix

18 lines
376 B
Nix

{ config, lib, pkgs, ... }: {
programs.wofi = {
enable = true;
settings = {
allow_images = true;
insensitive = true;
run-always_parse_args = true;
run-cache_file = "/dev/null";
run-exec_search = true;
matching = "multi-contains";
};
style = ''
#window {
box-shadow: 5px 5px 5px black;
}
'';
};
}