dotfiles/flakes/common/hm_modules/launcher_rofi.nix
2025-10-20 20:45:26 -05:00

18 lines
278 B
Nix

{
pkgs,
...
}:
{
programs.rofi = {
enable = true;
plugins = with pkgs; [ rofi-calc ];
extraConfig = {
modi = "drun,run,ssh,window,calc";
terminal = "alacritty";
};
theme = "glue_pro_blue";
};
programs.wofi = {
enable = true;
};
}