From f62ceb8d2f1b2f198ff279518b60431246b7ce21 Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 16 Apr 2023 15:31:30 +0200 Subject: [PATCH] hosts/osmium: Enable cross compiling --- hosts/osmium/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/osmium/configuration.nix b/hosts/osmium/configuration.nix index 728f470..0fb1da2 100644 --- a/hosts/osmium/configuration.nix +++ b/hosts/osmium/configuration.nix @@ -11,7 +11,11 @@ boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/vda"; - boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + boot.binfmt.emulatedSystems = [ + "armv6l-linux" + "armv7l-linux" + "aarch64-linux" + ]; networking.hostName = "osmium";