From 5c59fa4bde0e12a4ef7db552564d99da356648c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 5 Mar 2023 11:17:25 +0000 Subject: [PATCH] make sure vpsfree ssh settings are widespread --- nixos/common.nix | 7 +++++++ nixos/distributed-builds.nix | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) 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";