mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 22:26:11 +01:00
15 lines
338 B
Nix
15 lines
338 B
Nix
{pkgs, ...}: {
|
|
nix.distributedBuilds = true;
|
|
nix.settings.builders-use-substitutes = true;
|
|
|
|
nix.buildMachines = [
|
|
{
|
|
hostName = "192.168.0.10";
|
|
sshUser = "remotebuild";
|
|
sshKey = "/root/.ssh/remotebuild";
|
|
system = "x86_64-linux";
|
|
supportedFeatures = ["nixos-test" "big-parallel" "kvm"];
|
|
}
|
|
];
|
|
}
|