From 0a7146e8d327e2b35d137af2e24e408426486266 Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Thu, 19 Feb 2026 18:41:06 -0500 Subject: [PATCH] docs(nix): add flake usage instructions to README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Document how to use the Nix flake for both standalone usage (nix run) and home-manager integration. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 0cf00a06..3a0f8c11 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,26 @@ nvim Run `:Lazy` to check plugin status. Run `:checkhealth` if anything looks wrong. +### Nix Flake (Alternative Installation) + +If you use Nix with flakes, you can install this configuration via the flake: + +```sh +# Try it out without installing +nix run github:0xWheatyz/kickstart.nvim + +# Or add to your home-manager configuration +{ + inputs.kickstart-nvim.url = "github:0xWheatyz/kickstart.nvim"; + + # In your home-manager configuration: + programs.neovim-kickstart.enable = true; +} +``` + +The home-manager module automatically installs Neovim with this configuration +and recommended dependencies (ripgrep, fd, gcc, make, git). + --- ## Structure