nixos-configs/home/wofi/default.nix
matt1432 20dac8791e
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: limit use of with lib
2024-01-22 11:09:37 -05:00

18 lines
335 B
Nix

{...}: {
programs = {
wofi = {
enable = true;
settings = {
prompt = "";
allow_images = true;
normal_window = true;
image_size = "48";
matching = "fuzzy";
insensitive = true;
no_actions = true;
};
style = builtins.readFile ./style.css;
};
};
}