dotfiles/users/josh/home_manager/launcher.nix
2024-05-10 14:05:19 -05:00

12 lines
240 B
Nix

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