summaryrefslogtreecommitdiff
path: root/Biz/Dev
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2020-11-28 13:32:31 -0500
committerBen Sima <ben@bsima.me>2020-11-28 13:32:39 -0500
commit5615764d3d2bf583bdb1da3f2914c2c5215f034c (patch)
tree4b7aa380470f1a97f027ff4735b8e1a73ba2ea5a /Biz/Dev
parentd0992536ff338d8ec393b286a0da9979efc729d4 (diff)
Tweak nix config for remote builds
Diffstat (limited to 'Biz/Dev')
-rw-r--r--Biz/Dev/Configuration.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/Biz/Dev/Configuration.nix b/Biz/Dev/Configuration.nix
index b316b16..7fa0e37 100644
--- a/Biz/Dev/Configuration.nix
+++ b/Biz/Dev/Configuration.nix
@@ -223,15 +223,22 @@ in {
nix = {
- # 1 job * 2 cores = 2 maximum cores used at any one time
- maxJobs = 1;
- buildCores = 1;
+ autoOptimiseStore = true;
+ buildCores = 0; # use all available cores
# Since this is the dev machine, we can turn these on at the expense
# of extra disk space.
extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
+ # 1 job * 2 cores = 2 maximum cores used at any one time
+ maxJobs = 1;
+ sshServe = {
+ enable = true;
+ keys = [
+ (builtins.readFile ../Keys/Ben.pub)
+ ];
+ };
trustedUsers = [ "root" "ben" ];
};