A fast CLI documentation searcher for Nix.
Go to file
2021-04-20 01:47:08 +02:00
nix Revert "niv update" 2020-09-13 17:12:00 +02:00
src fix NixOS Options doc source build 2021-04-20 01:44:21 +02:00
.gitignore add manix.png 2020-08-15 19:17:43 +02:00
Cargo.lock v0.6.3 2021-04-20 01:47:08 +02:00
Cargo.toml v0.6.3 2021-04-20 01:47:08 +02:00
default.nix Revert "use pkgs.rustPlatform instead of naersk, add CI" 2020-09-13 17:11:57 +02:00
flake.lock make it a flake 2020-09-02 14:56:37 +02:00
flake.nix make it a flake 2020-09-02 14:56:37 +02:00
LICENSE release 2020-08-15 19:13:26 +02:00
manix.png update screenshot 2020-09-13 18:26:26 +02:00
README.md update readme, mention manix is available in nixpkgs 2020-09-20 17:17:20 +02:00
shell.nix initial 2020-08-15 17:53:00 +02:00

Manix

A fast CLI documentation searcher for Nix.

Supported sources:

  • Nixpkgs Documentation
  • Nixpkgs Comments
  • Nixpkgs Tree (pkgs., pkgs.lib.)
  • NixOS Options
  • Home-Manager Options

Usage

manix --help
manix mergeattr
manix --strict mergeattr
manix --update-cache mergeattr

rnix-lsp

If you want to use it in your editor, check ElKowar's rnix-lsp fork, which uses it to provide documentation on hover and autocompletion.

manix

fzf

manix "" | grep '^# ' | sed 's/^# \(.*\) (.*/\1/;s/ (.*//;s/^# //' | fzf --preview="manix '{}'" | xargs manix

Installation

Update

Manix is now available in nixpkgs. If you use the unstable channel installing is as easy as adding manix to your environment.systemPackages or home.packages.

Github Releases

Since it can take some time to compile Manix, you can download statically-built executables from Github Releases.

wget https://github.com/mlvzk/manix/releases/latest/download/manix
chmod +x manix
mv manix ~/bin/ # or some other location in your $PATH

nix-env

# If you have the unstable channel on your system
nix-env -f '<unstable>' -iA manix
# OR
nix-env -i -f https://github.com/mlvzk/manix/archive/master.tar.gz

Nix with flakes enabled

$ nix run 'github:mlvzk/manix' mapAttrs

Kudos

The inspiration for this project came from nix-doc