blob: 3a7886843e3e118e7c1f972fbbb73944d97d5a0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ pkgs, ... }:
let
theme = ./squared-material-pine.rasi;
cycle = true;
plugins = with pkgs; [
rofi-emoji
rofi-calc
];
extraConfig = {
kb-row-up = "Up,Alt+k";
kb-row-down = "Down,Alt+j";
};
in
{
home.packages = with pkgs; [ rbw rofi-rbw pinentry ];
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
inherit theme cycle plugins extraConfig;
};
}
|