mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 12:58:07 +02:00
23 lines
470 B
Nix
23 lines
470 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
font = "mono 12";
|
|
location = "center";
|
|
|
|
extraConfig = {
|
|
modes = "run,ssh,drun";
|
|
"show-icons" = true;
|
|
"icon-theme" = "Papirus Dark";
|
|
yoffset = 0;
|
|
xoffset = 0;
|
|
"fixed-num-lines" = true;
|
|
"ml-row-down" = "ScrollDown";
|
|
"me-select-entry" = "MousePrimary";
|
|
"me-accept-entry" = "MouseDPrimary";
|
|
"me-accept-custom" = "Control+MouseDPrimary";
|
|
};
|
|
};
|
|
}
|