13 lines
229 B
Nix
13 lines
229 B
Nix
|
{ pkgs, ... }: {
|
||
|
programs.rofi = {
|
||
|
enable = true;
|
||
|
cycle = false;
|
||
|
package = pkgs.rofi-wayland;
|
||
|
font = "FiraCode Nerd Font 16";
|
||
|
extraConfig = {
|
||
|
show-icons = true;
|
||
|
};
|
||
|
theme = ./theme.rasi;
|
||
|
};
|
||
|
}
|