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

12 lines
373 B
Nix
Raw Normal View History

2023-11-25 07:32:35 +01:00
{ inputs, config, lib, pkgs, modulesPath, desktop, 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"
];
2023-11-26 02:46:51 +01:00
environment.systemPackages = with pkgs; [ qemu_kvm ];
2023-11-25 07:17:29 +01:00
}