diff options
| author | user@node5.net <user@node5.net> | 2026-03-06 00:18:31 +0100 |
|---|---|---|
| committer | user@node5.net <user@node5.net> | 2026-03-06 00:18:31 +0100 |
| commit | e16d8654285d03be0d9efa47e153c6a8ec103ffb (patch) | |
| tree | 0d8708bfee561b68eba4a24e9af7cbd9c5a6bb4c | |
| parent | 5b18e0a8d91c29d8c8f4597207e6d500d6f75994 (diff) | |
docs: add how to incorporate in nixos flake to readme
| -rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -3,5 +3,19 @@ ## Run ``` -nix run git+https://git.node5.net/nix/nvim --no-write-lock-file +nix run git+https://git.node5.net/nix/nvim +``` + +## Add to NixOS flake + +Add this to your inputs + +```nix +node5-nvim.url = "git+https://git.node5.net/nix/nvim"; +``` + +And this to `environment.systemPackages` + +```nix +inputs.node5-nvim.packages.x86_64-linux.default ``` |
