No description
  • Nix 67.5%
  • Lua 32.5%
Find a file
Ellis Rahhal 2bfeb346fa Updates
* Pinned nixpkgs
* Fixed keybindings
2026-04-03 14:03:04 -07:00
plugins Updates 2026-04-03 14:03:04 -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 Updates 2026-04-03 14:03:04 -07:00
flake.lock Updates 2026-04-03 14:03:04 -07:00
flake.nix Updates 2026-04-03 14:03:04 -07:00
keymaps.nix ai plugin fixes 2026-03-22 14:28:04 -07:00
module.nix minor tweaks 2025-10-30 23:34:26 -07:00
nixvim.nix Updates 2026-04-03 14:03:04 -07:00
options.nix updated config format 2025-12-28 21:33:38 -08: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;
        }
      ];
    };
  };
}