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;
|
2024-10-19 15:17:53 +02:00
|
|
|
terminal = "foot";
|
2024-08-31 16:04:57 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|