thinkman: enable emulation for aarch

This commit is contained in:
Felix Buehler 2022-12-03 15:22:06 +01:00
parent 6eb4319dc5
commit 29c534c7d0

View file

@ -40,9 +40,15 @@
sops = { sops = {
defaultSopsFile = ./secrets.yaml; defaultSopsFile = ./secrets.yaml;
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
gnupg.sshKeyPaths = [ ]; gnupg.sshKeyPaths = [ ];
}; };
nix.extraOptions = ''
extra-platforms = aarch64-linux i686-linux
'';
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
# Use latest kernel # Use latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelPackages = pkgs.linuxPackages_latest;