nix/nixos/hosts/framework-server/builder.nix

15 lines
383 B
Nix
Raw Normal View History

2023-11-25 07:28:08 +01:00
{ username, ... }: {
2023-11-25 07:17:29 +01:00
# 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
];
}