mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-06 02:59:41 +01:00
42e59d8105
This includes the proper kernel, but does nothing more.
7 lines
203 B
Nix
7 lines
203 B
Nix
import <nixpkgs/nixos> {
|
|
configuration =
|
|
if builtins.currentSystem == "aarch64-linux"
|
|
then builtins.toPath (./. + "/configuration.nix")
|
|
else builtins.toPath (./. + "/with-cross.nix")
|
|
;
|
|
}
|