flake: follow flake-parts and flake-utils inputs

flake-parts's nixpkgs-lib input follows nvf's nixpkgs input to reduce
download size, and flake-utils's systems inputs follows nvf's systems
input to transitively leverage the pattern introduced in commit
fc8206e7a6 ("flake: utilize nix-systems for overridable flake
systems").
This commit is contained in:
NAHO 2025-07-10 18:50:30 +02:00
commit 607675ac6e
No known key found for this signature in database
GPG key ID: 229CB671D09B95F5
3 changed files with 28 additions and 35 deletions

View file

@ -76,8 +76,17 @@
inputs = {
## Basic Inputs
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-utils.url = "github:numtide/flake-utils";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
systems.url = "github:nix-systems/default";
# Alternate neovim-wrapper