nixvim-config/README.md
Ellis Rahhal e254433f2c * Refactored into separate files
* Baseline functionality
2025-02-14 00:42:22 -08:00

28 lines
481 B
Markdown

# nixvim-config
## Installation
Add the following to the `inputs` section of your flake.nix:
```nix
inputs = {
nixvim-config.url = "github:homefree/nixvim-config";
};
```
And add the following to the outputs:
```nix
outputs = { ... }@inputs: {
nixosConfigurations = {
<hostname> = inputs.nixpkgs.lib.nixosSystem {
modules = [
inputs.nixvim-config.nixosModules.default
{
nixvim-config.enable = true;
}
];
};
};
}
```