nix/modules/wm/home/rofi/default.nix

17 lines
288 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{
pkgs,
lib,
...
}: {
2024-10-04 22:32:42 +02:00
programs.rofi = {
2024-08-31 16:04:57 +02:00
enable = true;
package = pkgs.rofi-wayland;
2024-10-20 11:11:07 +02:00
theme = lib.mkForce "~/nix/modules/wm/home/rofi/gruvbox-material.rasi";
2024-08-31 16:04:57 +02:00
extraConfig = {
display-drun = "";
show-icons = true;
terminal = "foot";
2024-08-31 16:04:57 +02:00
};
};
}