17 lines
286 B
Nix
17 lines
286 B
Nix
{
|
|
pkgs,
|
|
nixpath,
|
|
...
|
|
}: {
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
theme = "~/${nixpath}modules/wm/home/rofi/gruvbox-material.rasi";
|
|
extraConfig = {
|
|
display-drun = "";
|
|
show-icons = true;
|
|
terminal = "foot";
|
|
};
|
|
};
|
|
}
|