feat(nvim): Move neovim config to a sub-flake

This commit is contained in:
uttarayan21
2024-03-29 19:00:05 +05:30
parent 85c4f13f56
commit eb13211abe
12 changed files with 1785 additions and 658 deletions

View File

@@ -69,6 +69,11 @@
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
neovim = {
url = "path:./neovim";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
@@ -158,5 +163,7 @@
import ./linux/device.nix {
inherit devices inputs nixpkgs home-manager overlays;
};
packages = inputs.neovim.packages;
};
}