My own custom anyrun plugins
Using helix's new fuzzy matcher nucleo.
Add the flake:
# flake.nix
{
inputs = {
...
anyrun-plugins = {
url = "github:wuliuqii/anyrun-plugins";
inputs.nixpkgs.follows = "nixpkgs";
};
...
};
}
The flake provides multiple packages:
- cliphist - the cliphist plugin
- hyprwin - the hyprwin plugin
- applications - the applications plugin
- symbols - the symbols plugin
Add to anyrun's home-manager module:
{
programs.anyrun = {
enable = true;
config = {
plugins = [
...
"${inputs.anyrun-plugins.packages.${pkgs.system}.cliphist"
...
];
...
};
};
}