From 7bd43f6bafe9550df290a0483686f326fce91dba Mon Sep 17 00:00:00 2001 From: rope Date: Sun, 17 May 2026 21:12:53 +0100 Subject: [PATCH] nix: add i686-linux to remote build machine systems Lutris and Wine pull in 32-bit (i686-linux) dependencies like openldap. Without i686-linux in the supported systems list, nix falls back to building those locally on the gaming PC instead of offloading to the server. Co-Authored-By: Claude Sonnet 4.6 --- common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.nix b/common.nix index fee2569..06f9f38 100644 --- a/common.nix +++ b/common.nix @@ -122,7 +122,7 @@ nix.buildMachines = lib.mkIf (config.networking.hostName != "FredOS-Mediaserver") [{ hostName = "nordhammer.it"; - systems = [ "x86_64-linux" ]; + systems = [ "x86_64-linux" "i686-linux" ]; sshUser = "fred"; sshKey = "/root/.ssh/id_ed25519"; maxJobs = 4;