9 lines
204 B
Nix
9 lines
204 B
Nix
{ pkgs, modulesPath, config, ... }: {
|
|
imports = [
|
|
"${modulesPath}/installer/sd-card/sd-image-aarch64.nix"
|
|
];
|
|
|
|
nixpkgs.system = "aarch64-linux";
|
|
my.build.image = config.system.build.sdImage;
|
|
}
|