No description
Find a file
2025-03-04 11:49:15 -08:00
plugins minor tweaks 2025-02-28 12:03:09 -08:00
.gitignore first commit 2025-02-13 10:35:17 -08:00
autocmd.nix minor tweaks 2025-02-28 12:03:09 -08:00
default.nix * Refactored into separate files 2025-02-14 00:42:22 -08:00
flake.lock bumped flake 2025-03-04 11:49:15 -08:00
flake.nix made startify default; working on mini-files 2025-02-23 13:59:49 -08:00
keymaps.nix refactored keybindings; added search and grep to nvim-tree 2025-02-14 16:54:21 -08:00
module.nix fixed startify indent lines; changed cowsay setting 2025-02-23 23:12:00 -08:00
nixvim.nix * Refactored into separate files 2025-02-14 00:42:22 -08:00
options.nix refactored keybindings; added search and grep to nvim-tree 2025-02-14 16:54:21 -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;
        }
      ];
    };
  };
}