20 lines
454 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
}
|