flakes/navi/laniakea/anyrun.nix
2026-04-10 18:50:25 +03:00

20 lines
454 B
Nix

{pkgs, ...}: {
programs.anyrun = {
enable = true;
config = {
hideIcons = false;
ignoreExclusiveZones = false;
layer = "overlay";
hidePluginInfo = false;
closeOnClick = false;
showResultsImmediately = false;
maxEntries = null;
plugins = [
"${pkgs.anyrun}/lib/libapplications.so"
"${pkgs.anyrun}/lib/libsymbols.so"
"${pkgs.anyrun}/lib/libactions.so"
];
};
};
}