feat: migrated thor to nixos (again)

This commit is contained in:
2024-11-16 11:46:23 +01:00
parent 6b8cec9963
commit 3b63a0873f
6 changed files with 170 additions and 77 deletions

View File

@@ -0,0 +1,15 @@
{ 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" ];
}
];
}