mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2025-03-01 03:15:19 +01:00
13 lines
342 B
Nix
13 lines
342 B
Nix
|
import <nixpkgs/nixos> {
|
||
|
configuration = {
|
||
|
imports = [
|
||
|
(
|
||
|
if builtins.currentSystem == "aarch64-linux"
|
||
|
then builtins.toPath (./. + "/configuration.nix")
|
||
|
else builtins.toPath (./. + "/with-cross.nix")
|
||
|
)
|
||
|
<nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
|
||
|
];
|
||
|
};
|
||
|
}
|