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

17 lines
286 B
Nix
Raw Normal View History

2024-08-31 16:04:57 +02:00
{
pkgs,
2024-11-09 16:24:20 +01:00
nixpath,
2024-08-31 16:04:57 +02:00
...
}: {
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-11-09 16:24:20 +01:00
theme = "~/${nixpath}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
};
};
}