1
0
mirror of https://github.com/samueldr/wip-pinebook-pro.git synced 2024-06-01 02:23:34 +02:00
wip-pinebook-pro/with-cross.nix
Samuel Dionne-Riel 42e59d8105 Adds (incomplete) system image build
This includes the proper kernel, but does nothing more.
2020-01-06 15:22:39 -05:00

12 lines
159 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./cross-hacks.nix
./configuration.nix
];
nixpkgs.crossSystem = {
system = "aarch64-linux";
};
}