dotfiles/flakes/common/hm_modules/launcher_rofi.nix
RingOfStorms (Joshua Bell) 071ae90c08 attempt dark mode i3 de
2025-10-28 23:26:21 -05:00

18 lines
273 B
Nix

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