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

481 B

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;
        }
      ];
    };
  };
}