about summary refs log tree commit diff
path: root/configurations
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2024-08-03 00:23:38 +0300
committerAzat Bahawi <azat@bahawi.net>2024-08-03 00:23:38 +0300
commitffd1ac27a341de0da4bf63a5da1320ee6d132ae0 (patch)
tree721c614b649cea4b13f69a9983570247b7cef118 /configurations
parent2024-08-02 (diff)
2024-08-03
Diffstat (limited to '')
-rw-r--r--configurations/eonwe/default.nix19
-rw-r--r--configurations/ilmare/default.nix24
2 files changed, 42 insertions, 1 deletions
diff --git a/configurations/eonwe/default.nix b/configurations/eonwe/default.nix
index ca20140..29f1adc 100644
--- a/configurations/eonwe/default.nix
+++ b/configurations/eonwe/default.nix
@@ -15,7 +15,10 @@ with lib;
 
     syncthing.enable = true;
 
-    openssh.server.enable = true;
+    openssh.server = {
+      enable = true;
+      port = 22;
+    };
 
     android.enable = true;
     beets.enable = true;
@@ -294,4 +297,18 @@ with lib;
     enable = true;
     memoryPercent = 25;
   };
+
+  users = {
+    users.builder = {
+      isSystemUser = true;
+      group = "builder";
+      openssh.authorizedKeys.keys = [
+        "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHzclJfd2n0POaFlYuSRK40JddtS+PYIpFyTz2BY94Wb root@ilmare"
+      ];
+      useDefaultShell = true;
+    };
+    groups.builder = { };
+  };
+
+  nix.settings.trusted-users = [ "builder" ];
 }
diff --git a/configurations/ilmare/default.nix b/configurations/ilmare/default.nix
index 1e9f5ff..a1b5007 100644
--- a/configurations/ilmare/default.nix
+++ b/configurations/ilmare/default.nix
@@ -123,4 +123,28 @@ _: {
     enable = true;
     memoryPercent = 100;
   };
+
+  nix = {
+    buildMachines = [
+      {
+        hostName = "eonwe.shire.net";
+
+        protocol = "ssh-ng";
+        sshUser = "builder";
+        sshKey = "/root/.ssh/id_ed25519";
+
+        system = "x86_64-linux";
+        supportedFeatures = [
+          "nixos-test"
+          "benchmark"
+          "big-parallel"
+          "kvm"
+        ];
+      }
+    ];
+
+    distributedBuilds = true;
+
+    settings.builders-use-substitutes = true;
+  };
 }

Consider giving Nix/NixOS a try! <3