From 4bbff75f6883afd8cfcb11fcb7d6e39d53f2c01c Mon Sep 17 00:00:00 2001 From: Felix Tenley Date: Tue, 8 Feb 2022 23:46:28 +0100 Subject: [PATCH] feat(home-pc): enable cross-compilation support --- home-pc.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home-pc.nix b/home-pc.nix index 9174154..2c66273 100644 --- a/home-pc.nix +++ b/home-pc.nix @@ -21,6 +21,9 @@ boot.loader.systemd-boot.memtest86.enable = true; + # cross-compilation support + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + hardware.enableAllFirmware = true; hardware.cpu.amd.updateMicrocode = true; services.fwupd.enable = true;