blob: 45e734dfde5031a4936f83d9d8e03d6521eacd6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ pkgs, ... }:
let
theme = ./squared-material-pine.rasi;
cycle = true;
plugins = with pkgs; [
rofi-emoji
rofi-calc
];
in
{
home.packages = with pkgs; [ rbw rofi-rbw pinentry ];
programs.rofi = {
enable = true;
inherit theme cycle plugins;
};
}
|