From 746cd6277099558a4d4fc8d66ad7ef14b2852594 Mon Sep 17 00:00:00 2001 From: Julien Malka <julien@malka.sh> Date: Sat, 13 May 2023 16:30:04 +0200 Subject: [PATCH] tower: i686 emulation --- machines/tower/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/tower/default.nix b/machines/tower/default.nix index 2694497..5724bad 100644 --- a/machines/tower/default.nix +++ b/machines/tower/default.nix @@ -108,6 +108,8 @@ # Enable the OpenSSH daemon. services.openssh.enable = true; + boot.binfmt.emulatedSystems = [ "i686-linux" ]; + # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 80 443 1810 ]; networking.firewall.allowedUDPPorts = [ 80 443 1810 ];