aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
```