docs(nix): add flake usage instructions to README

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 <noreply@anthropic.com>
This commit is contained in:
0xWheatyz 2026-02-19 18:41:06 -05:00
parent e318f42bf3
commit 0a7146e8d3
1 changed files with 20 additions and 0 deletions

View File

@ -41,6 +41,26 @@ nvim
Run `:Lazy` to check plugin status. Run `:checkhealth` if anything looks wrong. 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 ## Structure