nix/modules/wm/home/rofi/default.nix
2024-11-09 16:24:20 +01:00

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";
};
};
}