mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-05 18:49:41 +01:00
8 lines
203 B
Nix
8 lines
203 B
Nix
|
import <nixpkgs/nixos> {
|
||
|
configuration =
|
||
|
if builtins.currentSystem == "aarch64-linux"
|
||
|
then builtins.toPath (./. + "/configuration.nix")
|
||
|
else builtins.toPath (./. + "/with-cross.nix")
|
||
|
;
|
||
|
}
|