universe/home/programs/graphical/anyrun.nix
2025-03-02 17:14:39 +05:00

33 lines
599 B
Nix

{
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;
}
'';
};
}