nix/modules/wm/home/rofi/default.nix
2024-10-20 11:11:07 +02:00

17 lines
288 B
Nix

{
pkgs,
lib,
...
}: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = lib.mkForce "~/nix/modules/wm/home/rofi/gruvbox-material.rasi";
extraConfig = {
display-drun = "";
show-icons = true;
terminal = "foot";
};
};
}