nixos-config/modules/home/nix/buildMachines/sincereintent.nix
Sridhar Ratnakumar 7cc72327f6 pureintent: reborn
2026-02-12 16:09:59 -05:00

26 lines
739 B
Nix

{ ... }:
{
# Configure remote building to sincereintent (macOS builder)
nix.buildMachines = [
{
hostName = "sincereintent";
# hostName = "192.168.2.137"; # wifi
sshUser = "srid";
systems = [ "aarch64-darwin" ];
protocol = "ssh-ng";
maxJobs = 16;
speedFactor = 2;
supportedFeatures = [ "benchmark" "big-parallel" ];
mandatoryFeatures = [ ];
# We need this!
sshKey = "/home/srid/.ssh/nix-remote-builder";
# This too!
# Run on the remote machine:
# , base64 -w0 /etc/ssh/ssh_host_ed25519_key.pub
publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSU82S2Q2OG5LdFlqNVhTaWgveVlteE96M2o0WUdMUGQxUTE1cTF0dUdsZWUgCg==";
}
];
}