No description
| plugins | ||
| .gitignore | ||
| autocmd.nix | ||
| default.nix | ||
| flake.lock | ||
| flake.nix | ||
| keymaps.nix | ||
| module.nix | ||
| nixvim.nix | ||
| options.nix | ||
| README.md | ||
nixvim-config
Installation
Add the following to the inputs section of your flake.nix:
inputs = {
nixvim-config.url = "github:homefree/nixvim-config";
};
And add the following to the outputs:
outputs = { ... }@inputs: {
nixosConfigurations = {
<hostname> = inputs.nixpkgs.lib.nixosSystem {
modules = [
inputs.nixvim-config.nixosModules.default
{
nixvim-config.enable = true;
}
];
};
};
}