mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 23:06:10 +01:00
16 lines
342 B
Nix
16 lines
342 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" ];
|
|
}
|
|
];
|
|
}
|