nixos/home/modules/user/wofi/default.nix
2025-11-16 01:03:19 +01:00

18 lines
333 B
Nix

{
programs.wofi = {
enable = true;
style = ./style.css;
settings = {
show = "drun";
width = 750;
height = 400;
always_parse_args = true;
show_all = false;
term = "foot";
hide_scroll = true;
print_command = true;
insensitive = true;
columns = 1;
};
};
}