— Made with Nix, and love. —
Note
This repository is meant to be used as a starting point to work with Neovim configuration with NVF Nix implementation.
nix run github:didacd/dncnix profile install github:didacd/dncImportant
There will be cases where you are working on systems that do not have internet access. And the only way to install is building the whole flake first. In that case, please refer to these steps.
To build the package, you need a machine with the same architecture as the one you want to install. Then, clone the repo and build using:
nix build .Then export the result by generating a .nar file:
nix-store --export $(nix-store -qR $(nix path-info .)) > dnc.narUse whatever you are confortable with to send the resulted .nar file to the
target machine. Once it is copied you need to import using this command:
nix-store --import < dnc.narIt is important to note that importing the .nar file does not add it to your PATH.
For that you will need to manually copy the resulted store path and add it to your .bashrc
or whatever you use.
