Common/nix: don't use remote builder on WinMax2

This commit is contained in:
Toast 2024-04-26 09:37:33 +02:00
parent d933203186
commit f9d60b9c8b

View file

@ -1,6 +1,7 @@
{
systemPkgs,
config,
lib,
flakeSelf,
...
}: {
@ -25,7 +26,8 @@
experimental-features = "nix-command flakes";
};
distributedBuilds = true;
buildMachines = [
# Don't use remote builder on the remote builder
buildMachines = lib.mkIf (config.networking.hostName != "WinMax2") [
{
hostName = "nixrbld";
system = "x86_64-linux";