remote building

This commit is contained in:
Clayton Hickey 2025-11-04 13:58:34 -05:00
parent 946fb550e9
commit 697ba800a6
3 changed files with 27 additions and 0 deletions

View file

@ -12,6 +12,8 @@
cos.winboat.enable = true;
cos.docker.enable = true;
cos.remoteBuild.enable = true;
boot = {
loader = {
systemd-boot.enable = true;

View file

@ -5,6 +5,7 @@
./wireguard.nix
./winboat.nix
./docker.nix
./remoteBuild.nix
"${inputs.home-manager}/nixos"
];

24
remoteBuild.nix Normal file
View file

@ -0,0 +1,24 @@
{ lib, config, ... }:
let cfg = config.cos.remoteBuild; in
{
options.cos.remoteBuild = {
enable = lib.mkEnableOption "Turn on remote builders";
};
config = lib.mkIf cfg.enable {
cos.wireguard.enable = true;
nix.buildMachines = [{
sshUser = "clhickey";
hostName = config.cos.wireguard.clientPubOptionsMap.nixnas.ip;
system = "x86_64-linux";
protocol = "ssh-ng";
maxJobs = 4;
speedFactor = 1;
supportedFeatures = [ "kvm" "nixos-tests" "big-parallel" ];
mandatoryFeatures = [];
}];
nix.distributedBuilds = true;
nix.settings.builders-use-substitutes = false;
};
}