From 173f8e7cb5f6ec9bbdacf6f07846c6f142a29a45 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sun, 1 Sep 2024 16:04:03 +0200 Subject: [PATCH] add kuraokami as build machine --- nixos-modules/nix/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nixos-modules/nix/default.nix b/nixos-modules/nix/default.nix index 5838f27..102c068 100644 --- a/nixos-modules/nix/default.nix +++ b/nixos-modules/nix/default.nix @@ -81,6 +81,16 @@ in sshKey = "/root/.ssh/builder"; maxJobs = 4; } + { + systems = getArchs "kuraokami"; + supportedFeatures = self.nixosConfigurations.kuraokami.config.nix.settings.system-features; + hostName = "kuraokami"; + publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUtJbFZhWTZ0aTJkVFVGUks0eFVoRitxa1kwbUhiT3pNSWpjTjZpMFNiTW0gcm9vdEBrdXJhb2thbWkK"; + protocol = "ssh-ng"; + sshUser = "builder"; + sshKey = "/root/.ssh/builder"; + maxJobs = 24; + } ]; distributedBuilds = true; package = pkgs.lix;