Reuse systems input for flake-utils (#25)

* Reuse systems input for flake-utils

This change should make `flake-utils` use the same `systems` input as root. This prevents a duplicate input `systems_2` from appearing in `flake.lock`.

* Run nix flake update flake-utils
This commit is contained in:
Michael Dyer 2025-01-31 10:51:23 -06:00 committed by GitHub
commit ad9357bd9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 17 deletions

View file

@ -2,6 +2,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
flake-utils.inputs.systems.follows = "systems";
systems.url = "github:nix-systems/default";
};