dotfiles/components/hm/launcher_rofi.nix
RingOfStorms (Joshua Bell) eaa2e08f5d user specifics
2024-12-29 01:21:06 -06: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;
};
}