dotfiles/users/josh/home_manager/launcher_rofi.nix
RingOfStorms (Josh) f1a43e1b80 update dependencies
2024-05-12 23:18:27 -05:00

12 lines
230 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";
};
}