mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-05 18:49:41 +01:00
12 lines
159 B
Nix
12 lines
159 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./cross-hacks.nix
|
||
|
./configuration.nix
|
||
|
];
|
||
|
|
||
|
nixpkgs.crossSystem = {
|
||
|
system = "aarch64-linux";
|
||
|
};
|
||
|
}
|