dotfiles-nix/nix/programs/wofi/default.nix
2025-01-23 09:26:51 -05:00

24 lines
469 B
Nix

{ 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; };
};
};
}