This flake provies my nixvim configuration.
I've mainly broken out this config to easier test new
stuff without rebuilding nixos.
alias ndev = nix run ./path/to/kixvim/repo/
inputs = {
kixvim.url = "github:klowdo/kixvim";
};imports = [
nixvim.nixosModules.nixvim
];
programs.nixvim.enable = true;imports = [
nixvim.homeManagerModules.nixvim
];
programs.nixvim.enable = true;To start configuring, just add or modify the nix files in ./config.
If you add a new configuration file, remember to add it to the
config/default.nix file
To test your configuration simply run the following command
nix run .