fix(nixvim): follow nixpkgs

This commit is contained in:
Khaïs COLIN 2024-08-13 12:48:21 +02:00
parent e46d874e51
commit ec8047a5ca
2 changed files with 353 additions and 3 deletions

View file

@ -3,8 +3,14 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixvim.url = "github:nix-community/nixvim";
flake-parts.url = "github:hercules-ci/flake-parts";
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =