aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-03-06 00:18:31 +0100
committeruser@node5.net <user@node5.net>2026-03-06 00:18:31 +0100
commite16d8654285d03be0d9efa47e153c6a8ec103ffb (patch)
tree0d8708bfee561b68eba4a24e9af7cbd9c5a6bb4c
parent5b18e0a8d91c29d8c8f4597207e6d500d6f75994 (diff)
docs: add how to incorporate in nixos flake to readme
-rw-r--r--README.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/README.md b/README.md
index ce25dd1..db401ad 100644
--- a/README.md
+++ b/README.md
@@ -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
```