nix/modules/apps/gui/rofi/default.nix
2024-09-15 16:51:25 +02:00

21 lines
430 B
Nix

{
pkgs,
lib,
...
}: {
home-manager.users.joy.programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = lib.mkForce "~/nix/modules/apps/gui/rofi/gruvbox-material.rasi";
extraConfig = {
display-ssh = "";
display-run = "";
display-drun = "";
display-window = "";
display-combi = "";
show-icons = true;
terminal = "alacritty";
};
};
}