-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanyrun.nix
35 lines (34 loc) · 837 Bytes
/
anyrun.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# programs.anyrun =
{ inputs, pkgs, ... }: {
enable = true;
extraCss = import ./anyrun-theme.nix;
extraConfigFiles."symbols.ron".text = builtins.readFile ./anyrun.symbols.ron;
config = {
plugins = with inputs.anyrun.packages.${pkgs.system}; [
# An array of all the plugins you want, which either can be packages, or paths to the .so files
#./some_plugin.so
#anyrun_macros
applications
dictionary
#kidex
#randr
rink # calculator & units convertor
#shell
#stdin
symbols
translate
#websearch
];
x = { fraction = .5; };
y = { fraction = .5; };
width = { fraction = .4; };
height = { fraction = .5; };
hideIcons = false;
ignoreExclusiveZones = false;
layer = "overlay";
hidePluginInfo = false;
closeOnClick = false;
showResultsImmediately = true;
maxEntries = null;
};
}