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:
parent
e318f42bf3
commit
0a7146e8d3
20
README.md
20
README.md
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue