{ pkgs, anyrun, ... }: let anyrunPackages = anyrun.packages.${pkgs.system}; in { imports = [ anyrun.homeManagerModules.default ]; home.packages = with pkgs; [ rink ]; programs.anyrun = { enable = true; config = { plugins = with anyrunPackages; [ applications dictionary rink shell stdin symbols translate ]; hideIcons = false; ignoreExclusiveZones = false; layer = "overlay"; hidePluginInfo = false; closeOnClick = true; showResultsImmediately = false; maxEntries = null; }; }; }