mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-23 12:42:18 +00:00
19 lines
No EOL
477 B
Nix
19 lines
No EOL
477 B
Nix
{ config, lib, pkgs, ... }: {
|
|
programs.wofi = {
|
|
enable = true;
|
|
package = pkgs.wofi.overrideAttrs (oa: {
|
|
patches = (oa.patches or [ ]) ++ [
|
|
./wofi-run-shell.patch # Fix for https://todo.sr.ht/~scoopta/wofi/174
|
|
];
|
|
});
|
|
settings = {
|
|
image_size = 48;
|
|
columns = 3;
|
|
allow_images = true;
|
|
insensitive = true;
|
|
run-always_parse_args = true;
|
|
run-cache_file = "/dev/null";
|
|
run-exec_search = true;
|
|
};
|
|
};
|
|
} |