makeNixvim and man nixvim not appearing for default flake setup #2099
-
Hey, I recently installed nixvim as a standalone flake using the recommended template and neither the nixvim man page or |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For example, in my system flake I have a standalone |
Beta Was this translation helpful? Give feedback.
nix run
doesn't install anything. You can usenix shell
to enter a "shell" where the package is installed, however to install things persistently, you need to add them to your system config, e.g. your nixos config or your home-manager config.For example, in my system flake I have a standalone
packages.<system>.nvim
flake output. I then pass my flake itself through to my config modules usingspecialArgs
, and installself.packages.${pkgs.system}.nvim
in myhome.packages
.