This commit is contained in:
albert 2024-04-21 12:24:50 +09:00
parent 704db21e45
commit 7ec3c68b93
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A

View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
# FoR remote builds
# see home-manager: bash.nix: rebuild-*-remote
# 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; [ qemu_kvm ];
}