27 lines
653 B
Nix
27 lines
653 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
location = "center";
|
|
pass.enable = true;
|
|
terminal = "\${pkgs.kitty}/bin/kitty";
|
|
plugins = with pkgs; [
|
|
rofi-calc
|
|
];
|
|
extraConfig = {
|
|
modi = "run,drun,calc";
|
|
icon-theme = "Oranchelo";
|
|
show-icons = true;
|
|
drun-display-format = "{icon} {name}";
|
|
disable-history = false;
|
|
hide-scrollbar = true;
|
|
display-drun = " Apps ";
|
|
display-run = " Run ";
|
|
display-window = " Window";
|
|
display-calc = " √ Calculator";
|
|
sidebar-mode = true;
|
|
};
|
|
theme = ./config/rofi/catppuccin-macchiato.rasi;
|
|
};
|
|
}
|