diff options
author | Emile <git@emile.space> | 2024-12-03 22:04:42 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2024-12-03 22:04:42 +0100 |
commit | 6d1ae7bd2228ff74fc1021f657053d7ccbf7c6e5 (patch) | |
tree | 68c5f45d2973a6079d127090a92a251ca478c95a /nix/lib | |
parent | 0c9d47cbd6e9424f4b7e2cf62100e16145516f95 (diff) |
Diffstat (limited to 'nix/lib')
-rw-r--r-- | nix/lib/flake-helper.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nix/lib/flake-helper.nix b/nix/lib/flake-helper.nix index cac3a71..2f8a020 100644 --- a/nix/lib/flake-helper.nix +++ b/nix/lib/flake-helper.nix @@ -194,13 +194,14 @@ rec { { remoteBuild = true; hostname = "${ip}"; - fastConnection = true; + # fastConnection = true; profiles.system = { user = "root"; # user to install as sshUser = sshUser; # user to ssh to as # make sure people can use sudo # sshOpts = ["-A", "-t", "-S"]; + sshOpts = [ "-o" "ProxyCommand=none" ]; # make sure to add the nix foo on the darwin hosts to ~/.zshenv # as the ~/.zshrc doesn't get sourced when ssh-ing into the system |