nixos-aarch64-images/flake.nix
Jörg Thalheim dfc1ef7715 simplify flake a bit
I don't see yet any use case beyond using this on any other cpu than
x86_64-linux...,  maybe in future when risc64 takes over :)

So let's keep it simple for now
2022-01-27 04:45:54 +01:00

12 lines
309 B
Nix

{
description = "Build NixOS images for various ARM single computer boards";
# pin this to unstable
# inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }: {
packages.x86_64-linux = import ./. {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
};
};
}