summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2025-01-10 23:52:41 +0100
committerMel <einebeere@gmail.com>2025-01-10 23:52:41 +0100
commit6aa6be75f08751c7d8d6d8c04e37d1fb20820cb2 (patch)
tree9869ff97d710d2ef5d989e466249ba9de7803c11 /modules
parentcf93eec1ece342e4e6fbad2e91fd3c8b4fb6fb03 (diff)
downloadminerals-6aa6be75f08751c7d8d6d8c04e37d1fb20820cb2.tar.zst
minerals-6aa6be75f08751c7d8d6d8c04e37d1fb20820cb2.zip
Update remote builder speed factors, and support 32-bit compilation
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/nix.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/nix.nix b/modules/nix.nix
index 13572c5..c3f8118 100644
--- a/modules/nix.nix
+++ b/modules/nix.nix
@@ -32,7 +32,7 @@
 
         defaults = {
           sshUser = "mel";
-          system = "x86_64-linux";
+          systems = [ "x86_64-linux" "i686-linux" ];
           supportedFeatures = [
             "kvm"
             "big-parallel"
@@ -45,23 +45,23 @@
         {
           hostName = tailnet "bismuth";
           maxJobs = 16;
-          speedFactor = 5;
+          speedFactor = 8;
           publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUVQMVE4LzA3UEQ1QVhnaE03Y2Q5VWY1NFlZOHJrdUJIZmxscjFLenhoMTAgcm9vdEBiaXNtdXRoCg==";
-          inherit (defaults) sshUser system supportedFeatures;
+          inherit (defaults) sshUser systems supportedFeatures;
         }
         {
           hostName = tailnet "corsac";
-          maxJobs = 4;
-          speedFactor = 2;
+          maxJobs = 2;
+          speedFactor = 1;
           publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUh4Z2hWWDBPcStlSGtsZy9lN3MvcWhDOENLOFBMVWd2cExrMkc1M3hFaksgcm9vdEBjb3JzYWMK";
-          inherit (defaults) sshUser system supportedFeatures;
+          inherit (defaults) sshUser systems supportedFeatures;
         }
         {
           hostName = tailnet "renard";
           maxJobs = 6;
           speedFactor = 3;
           publicHostKey = "c3NoLWVkMjU1MTkgQUFBQUMzTnphQzFsWkRJMU5URTVBQUFBSUovcURMNys4NiswSDZOa1BzL3c0R1lpV1F3VC80WUF4OU8ySjdzTGtLbWYgcm9vdEByZW5hcmQK";
-          inherit (defaults) sshUser system supportedFeatures;
+          inherit (defaults) sshUser systems supportedFeatures;
         }
       ];
   };