diff --git a/nixos/common.nix b/nixos/common.nix index 4dd9c88c..7060df58 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -63,6 +63,13 @@ in { programs.adb.enable = true; programs.wireshark.enable = true; + programs.ssh.extraConfig = '' + Host vpsfree1 vpsfree1.cyplo.dev vpsfree1.raptor-carp.ts.net + HostName vpsfree1 + Port 2222 + StrictHostKeyChecking=accept-new + ''; + virtualisation.docker = { enable = true; autoPrune.enable = true; diff --git a/nixos/distributed-builds.nix b/nixos/distributed-builds.nix index e96c7108..ad2e4d6f 100644 --- a/nixos/distributed-builds.nix +++ b/nixos/distributed-builds.nix @@ -1,11 +1,4 @@ { config, pkgs, ... }: { - programs.ssh.extraConfig = '' - Host vpsfree1 vpsfree1.cyplo.dev vpsfree1.raptor-carp.ts.net - HostName vpsfree1 - Port 2222 - StrictHostKeyChecking=accept-new - ''; - nix.buildMachines = [{ hostName = "bolty"; sshUser = "nix-builder";