No description
  • Nix 68.1%
  • Lua 31.9%
Find a file
2026-04-27 22:39:26 -07:00
plugins added light theme 2026-04-19 10:22:41 -07:00
.gitignore first commit 2025-02-13 10:35:17 -08:00
autocmd.nix ai plugin fixes 2026-03-22 14:28:04 -07:00
default.nix added light theme 2026-04-19 10:22:41 -07:00
flake.lock Updates 2026-04-03 14:03:04 -07:00
flake.nix added light theme 2026-04-19 10:22:41 -07:00
hm-extras.nix fixed path conflicts 2026-04-27 22:39:26 -07:00
hm.nix added light theme 2026-04-19 10:22:41 -07:00
keymaps.nix ai plugin fixes 2026-03-22 14:28:04 -07:00
module.nix added light theme 2026-04-19 10:22:41 -07:00
nixos-extras.nix fixed path conflicts 2026-04-27 22:39:26 -07:00
nixvim.nix added light theme 2026-04-19 10:22:41 -07:00
options.nix added light theme 2026-04-19 10:22:41 -07:00
README.md * Refactored into separate files 2025-02-14 00:42:22 -08:00

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