nixos-configs/home/wofi/default.nix
matt1432 948fbf943e
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update flake.lock
2024-01-14 16:09:17 -05:00

24 lines
494 B
Nix

{
nixpkgs,
pkgs,
...
}: {
programs = {
wofi = {
enable = true;
# FIXME: remove when overlay gets fixed
package = pkgs.callPackage "${nixpkgs}/pkgs/applications/misc/wofi/default.nix" {};
settings = {
prompt = "";
allow_images = true;
normal_window = true;
image_size = "48";
matching = "fuzzy";
insensitive = true;
no_actions = true;
};
style = builtins.readFile ./style.css;
};
};
}