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 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-17 21:12:53 +01:00
parent 49c4a93fa8
commit 7bd43f6baf

View file

@ -122,7 +122,7 @@
nix.buildMachines = nix.buildMachines =
lib.mkIf (config.networking.hostName != "FredOS-Mediaserver") [{ lib.mkIf (config.networking.hostName != "FredOS-Mediaserver") [{
hostName = "nordhammer.it"; hostName = "nordhammer.it";
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" "i686-linux" ];
sshUser = "fred"; sshUser = "fred";
sshKey = "/root/.ssh/id_ed25519"; sshKey = "/root/.ssh/id_ed25519";
maxJobs = 4; maxJobs = 4;