23 lines
578 B
Nix
23 lines
578 B
Nix
|
{pkgs, ...}: {
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
package = pkgs.rofi-wayland;
|
||
|
theme = ./catppuccin-mocha.rasi;
|
||
|
extraConfig = {
|
||
|
modi = "run,drun,window";
|
||
|
icon-theme = "Oranchelo";
|
||
|
show-icons = true;
|
||
|
terminal = "wezterm";
|
||
|
drun-display-format = "{icon} {name}";
|
||
|
location = 0;
|
||
|
disable-history = false;
|
||
|
hide-scrollbar = true;
|
||
|
display-drun = " Apps ";
|
||
|
display-run = " Run ";
|
||
|
display-window = " Window";
|
||
|
display-Network = " Network";
|
||
|
sidebar-mode = true;
|
||
|
};
|
||
|
};
|
||
|
}
|