{ pkgs, config, lib, osConfig, ... }: lib.mkIf config.programs.rofi.enable { programs.rofi = let conf = "${config.home.homeDirectory}/.config/rofi"; in rec { package = pkgs.rofi-wayland.override { inherit plugins; }; plugins = [ pkgs.rofi-calc ]; theme = "${conf}/themes/rounded-gray-dark.rasi"; terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal; extraConfig = { modes = [ "combi" "filebrowser" "ssh" "drun" "run" # WARNING: ABI version mismatch # "calc" "clipboard:${lib.my.getExe' pkgs.cliphist "cliphist-rofi-img"}" ]; matching = "fuzzy"; sort = true; sorting-method = "fzf"; show-icons = true; steal-focus = true; drun-use-desktop-cache = true; drun-reload-desktop-cache = true; combi-modes = [ "window" "drun" "obsidian" ]; }; }; }