dotfiles/common/home_manager/programs/launcher_rofi.nix
RingOfStorms (Joshua Bell) 1d9c4beaf3 WIP BROKEN SYSTEM ATM
2025-03-18 00:32:21 -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;
};
}