-
Hey folks! I'm quite new to Nix and currently using with nix-darwin and home-manager to configure macOS. I'm using Would really appreciate if someone could explain why this is happening and how to fix? My config is here: https://github.com/tebuevd/setup-nix/blob/yummy-snacks/home/programs/nvim.nix
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The If you are interested, there is an interesting "hack" that you can employ to subsume those extensions into your own extended library, but it might be confusing for a beginner so I would recommend accessing it directly as |
Beta Was this translation helpful? Give feedback.
The
nvim
extension underlib
while inside nvf comes from our extended standard library; but it will not be present unless you extend yournixpkgs.lib
using something likelib.extend
yourself. However we also expose it as a flake output, so you should be able to access it asinputs.nvim.lib
.If you are interested, there is an interesting "hack" that you can employ to subsume those extensions into your own extended library, but it might be confusing for a beginner so I would recommend accessing it directly as
inputs.nvf.lib.nvim
for now.