My Neovim configuration managed with nix
- Nix 90.9%
- Lua 9.1%
| .forgejo/workflows | ||
| config | ||
| flake.lock | ||
| flake.nix | ||
| README.md | ||
Artur's Nixvim
This repo contains my Nixvim configuration integrated within my NixOS.
To test my Nixvim as a standalone program run
nix run git+https://git.asannikov.com/artur/nixvim.git
On NixOS I add this to flake.nix:
{
...
inputs = {
nixvim.url = "git+https://git.asannikov.com/artur/nixvim.git";
}
...
Then to use it as a package add this to, for example, packages.nix:
{ inputs, pkgs, ... }:
{
home.packages = with pkgs; [
...
inputs.nixvim.packages.${pkgs.system}.default
];
}
Credits
Kudos to Ahwxorg, whose simple config I used to build a standalone Nixvim.