19 lines
457 B
Nix
19 lines
457 B
Nix
|
{ pkgs, anyrun, ... }:
|
||
|
let anyrunPackages = anyrun.packages.${pkgs.system};
|
||
|
in {
|
||
|
imports = [ anyrun.homeManagerModules.default ];
|
||
|
programs.anyrun = {
|
||
|
enable = true;
|
||
|
config = {
|
||
|
plugins = [ anyrunPackages.applications ];
|
||
|
hideIcons = false;
|
||
|
ignoreExclusiveZones = false;
|
||
|
layer = "overlay";
|
||
|
hidePluginInfo = false;
|
||
|
closeOnClick = true;
|
||
|
showResultsImmediately = false;
|
||
|
maxEntries = null;
|
||
|
};
|
||
|
};
|
||
|
}
|