15 lines
368 B
Nix
15 lines
368 B
Nix
|
{}: {
|
||
|
# Testing remote builldings
|
||
|
users.users.${username}.openssh.authorizedKeys.keyFiles = [ ../../../keys/ssh/builder-keys.txt ];
|
||
|
|
||
|
# For cross-architecture builds
|
||
|
boot.binfmt.emulatedSystems = [
|
||
|
"aarch64-linux"
|
||
|
"armv7l-linux"
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Currently used for building the Linode image
|
||
|
qemu_kvm
|
||
|
];
|
||
|
}
|