21 lines
421 B
Nix
21 lines
421 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
home-manager.users.joy.programs.rofi = {
|
||
|
enable = true;
|
||
|
package = pkgs.rofi-wayland;
|
||
|
theme = lib.mkForce "~/nix/modules/rofi/gruvbox-material.rasi";
|
||
|
extraConfig = {
|
||
|
display-ssh = "";
|
||
|
display-run = "";
|
||
|
display-drun = "";
|
||
|
display-window = "";
|
||
|
display-combi = "";
|
||
|
show-icons = true;
|
||
|
terminal = "alacritty";
|
||
|
};
|
||
|
};
|
||
|
}
|