Added nix-systems input and made flake-utils.inputs.systems follow it.

This commit is contained in:
Peter A. 2024-10-07 08:18:01 +02:00 committed by mergify[bot]
parent 925084d860
commit 2154fdbb83

View file

@ -1,7 +1,11 @@
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.systems.url = "github.com:nix-systems/default";
inputs.flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
outputs =
{ nixpkgs, flake-utils, ... }: