2024-01-14 16:09:17 -05:00
|
|
|
{
|
|
|
|
nixpkgs,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2023-10-18 12:18:17 -04:00
|
|
|
programs = {
|
|
|
|
wofi = {
|
|
|
|
enable = true;
|
2024-01-14 16:09:17 -05:00
|
|
|
# FIXME: remove when overlay gets fixed
|
|
|
|
package = pkgs.callPackage "${nixpkgs}/pkgs/applications/misc/wofi/default.nix" {};
|
2023-10-18 12:18:17 -04:00
|
|
|
settings = {
|
|
|
|
prompt = "";
|
|
|
|
allow_images = true;
|
|
|
|
normal_window = true;
|
|
|
|
image_size = "48";
|
|
|
|
matching = "fuzzy";
|
|
|
|
insensitive = true;
|
|
|
|
no_actions = true;
|
|
|
|
};
|
|
|
|
style = builtins.readFile ./style.css;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|