nix/modules/rofi/default.nix

21 lines
418 B
Nix
Raw Normal View History

2024-08-31 14:33:03 +02:00
{
pkgs,
lib,
...
}: {
2024-08-31 14:46:41 +02:00
home-manager.users.joy.programs.rofi = {
2024-08-31 14:33:03 +02:00
enable = true;
package = pkgs.rofi-wayland;
theme = lib.mkForce "~/nix/home/rofi/gruvbox-material.rasi";
extraConfig = {
display-ssh = "";
display-run = "";
display-drun = "";
display-window = "";
display-combi = "";
show-icons = true;
terminal = "alacritty";
};
};
}