dotfiles-nix/nix/programs/wofi/default.nix

25 lines
469 B
Nix
Raw Normal View History

2025-01-23 14:26:51 +00:00
{ config, lib, ... }:
{
default.appLauncher = lib.mkDefault "wofi --show drun --prompt 'Seach Programs'";
home-manager.users.${config.user} = {
programs.wofi = {
enable = true;
settings = {
key_expand = "Tab";
term = "kitty";
matching = "multi-contains";
insensitive = true;
gtk_dark = true;
hide_scroll = true;
};
style = import ./style.nix { theme = config.theme; };
};
};
}