summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-10-02 11:35:58 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2021-10-02 11:35:58 +0200
commit9c3b3a4658be4ea7326cca26a68861dfd4ab3dc4 (patch)
tree64e5590d91d00401576a3512fcaa699d3afc96c2
parent6ee516b4efae723115385db414595ef02be76811 (diff)
downloadnixos-9c3b3a4658be4ea7326cca26a68861dfd4ab3dc4.tar
nixos-9c3b3a4658be4ea7326cca26a68861dfd4ab3dc4.tar.gz
nixos-9c3b3a4658be4ea7326cca26a68861dfd4ab3dc4.tar.bz2
nixos-9c3b3a4658be4ea7326cca26a68861dfd4ab3dc4.tar.xz
nixos-9c3b3a4658be4ea7326cca26a68861dfd4ab3dc4.zip
build-client: ...
-rw-r--r--modules/build-client.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/build-client.nix b/modules/build-client.nix
index cedfc2eb..3e171897 100644
--- a/modules/build-client.nix
+++ b/modules/build-client.nix
@@ -6,7 +6,7 @@ let
6 cfg = config.nix.buildServers; 6 cfg = config.nix.buildServers;
7 7
8 secretName = name: "nix-ssh-builder-${name}-private"; 8 secretName = name: "nix-ssh-builder-${name}-private";
9 hostName = host: "nix-ssh-builder-${host}"; 9 buildHostName = host: "nix-ssh-builder-${host}";
10in { 10in {
11 options = { 11 options = {
12 nix = { 12 nix = {
@@ -88,7 +88,7 @@ in {
88 88
89 config = mkIf (cfg != {}) { 89 config = mkIf (cfg != {}) {
90 programs.ssh.extraConfig = concatMapStringsSep "\n" ({ name, value }: '' 90 programs.ssh.extraConfig = concatMapStringsSep "\n" ({ name, value }: ''
91 Host ${hostName name} 91 Host ${buildHostName name}
92 User nix-ssh-builder 92 User nix-ssh-builder
93 HostName ${value.address} 93 HostName ${value.address}
94 IdentitiesOnly yes 94 IdentitiesOnly yes
@@ -104,6 +104,6 @@ in {
104 104
105 sops.secrets = mapAttrs' (name: hCfg: nameValuePair (secretName name) { sopsFile = ../system-profiles/build-server/clients + "/${hostName}/private"; format = "binary"; }) cfg; 105 sops.secrets = mapAttrs' (name: hCfg: nameValuePair (secretName name) { sopsFile = ../system-profiles/build-server/clients + "/${hostName}/private"; format = "binary"; }) cfg;
106 106
107 nix.buildMachines = mapAttrsToList (name: hCfg: { hostName = hostName name; inherit (hCfg) system systems maxJobs speedFactor mandatoryFeatures supportedFeatures; }) cfg; 107 nix.buildMachines = mapAttrsToList (name: hCfg: { hostName = buildHostName name; inherit (hCfg) system systems maxJobs speedFactor mandatoryFeatures supportedFeatures; }) cfg;
108 }; 108 };
109} 109}