1
Fork 0
satellite/home/features/wayland/anyrun/default.nix

19 lines
325 B
Nix

{ inputs, pkgs, ... }: {
programs.anyrun = {
enable = true;
config = {
plugins = with inputs.anyrun.packages.${pkgs.system}; [
applications
dictionary
rink
stdin
symbols
websearch
];
width.fraction = 0.5;
height.fraction = 0.6;
};
};
}