Skip to content

Latest commit

 

History

History
60 lines (47 loc) · 1.35 KB

File metadata and controls

60 lines (47 loc) · 1.35 KB

My own custom anyrun plugins

Using helix's new fuzzy matcher nucleo.

Installation

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"
        ...
      ];
      ...
    };
  };
}

Plugins