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