{ pkgs, inputs, config, ... }: { imports = [inputs.anyrun.homeManagerModules.default]; programs.anyrun = { enable = true; config = { plugins = [ inputs.anyrun.packages.${pkgs.system}.applications ]; x = {fraction = 0.5;}; y = {absolute = 20;}; width = {absolute = 600;}; showResultsImmediately = false; closeOnClick = false; hidePluginInfo = true; hideIcons = false; layer = "top"; maxEntries = null; }; extraCss = '' window { background-color: transparent; } ''; }; }