From 71f210696624b335824a5cfe4d4341a61ba12cfc Mon Sep 17 00:00:00 2001 From: kenji Date: Wed, 24 Dec 2025 13:24:14 -0600 Subject: [PATCH] added inputs for nixpkgs that nixvim follows --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 1bd0cdf..bd104e0 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,10 @@ description = "A nixvim configuration"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - nixvim.url = "github:nix-community/nixvim"; + nixvim = { + url = "github:nix-community/nixvim"; + inputs.nixpkgs.follows = "nixpkgs"; + }; flake-parts.url = "github:hercules-ci/flake-parts"; rust-overlay.url = "github:oxalica/rust-overlay"; };