starfive visionfive2: fix flake check

This commit is contained in:
Jakob Leifhelm 2023-04-23 18:43:25 +02:00
parent 16d6b81a47
commit 2ce2f3f978
No known key found for this signature in database
GPG Key ID: 6817AA0238100822
1 changed files with 6 additions and 1 deletions

View File

@ -5,8 +5,13 @@ Create and configure the `flake.nix` file:
{
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
inputs.nixos-hardware.url = "github:nixos/nixos-hardware";
# Some dependencies of this flake are not yet available on non linux systems
inputs.systems.url = "github:nix-systems/x86_64-linux";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, nixos-hardware, flake-utils }:
inputs.flake-utils.inputs.systems.follows = "systems";
outputs = { self, nixpkgs, nixos-hardware, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
rec {
packages.default = packages.sd-image;