diff options
author | Ben Sima <ben@bsima.me> | 2019-11-08 21:52:03 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-11-08 21:58:08 -0800 |
commit | f9c828c86a93354d6840437a2d51e21a5af95160 (patch) | |
tree | 81f02cdae2ee50d67b804c2bc125b499a31095cb | |
parent | 13b914ff7f14d526918ab6a16ccea29dbb161896 (diff) |
get remote builds working with lithium
-rw-r--r-- | machines/helium.nix | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/machines/helium.nix b/machines/helium.nix index 0eb4b07..9e8221e 100644 --- a/machines/helium.nix +++ b/machines/helium.nix @@ -111,22 +111,17 @@ dates = "03:15"; }; binaryCaches = [ "https://cache.nixos.org/" ]; - nixPath = [ - "nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos/nixpkgs" - "nixos-config=/etc/nixos/configuration.nix" - "/nix/var/nix/profiles/per-user/root/channels" - ]; extraOptions = '' - gc-keep-outputs = true - gc-keep-derivations = true + keep-outputs = true + keep-derivations = true builders-use-substitutes = true ''; buildMachines = [ { - hostName = "home.simatime.com"; + hostName = "dev.simatime.com"; sshUser = "root"; - sshKey = "/home/ben/.ssh/hidor-kahih"; + sshKey = "/home/ben/.ssh/id_rsa"; system = "x86_64-linux"; maxJobs = 4; speedFactor = 4; |