Common/nix: don't use remote builder on WinMax2
This commit is contained in:
parent
d933203186
commit
f9d60b9c8b
1 changed files with 3 additions and 1 deletions
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue