12 lines
240 B
Nix
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";
|
|
};
|
|
}
|