dotfiles/users/josh/home_manager/launcher_rofi.nix
RingOfStorms (Joshua Bell) 9b0ed58123 use wofi for wanland
2024-10-18 17:04:22 -05:00

20 lines
391 B
Nix

{
pkgs,
nixConfig,
lib,
...
}:
{
programs.rofi = lib.mkIf nixConfig.mods.de_gnome_xorg.enable {
enable = true;
plugins = with pkgs; [ rofi-calc ];
extraConfig = {
modi = "drun,run,ssh,window,calc";
terminal = "alacritty";
};
theme = "glue_pro_blue";
};
programs.wofi = lib.mkIf nixConfig.mods.de_gnome_wayland.enable {
enable = true;
};
}