diff --git a/hosts/Anton/syncthing.nix b/hosts/Anton/syncthing.nix
index d3f4d06..a959065 100644
--- a/hosts/Anton/syncthing.nix
+++ b/hosts/Anton/syncthing.nix
@@ -16,6 +16,7 @@
       devices = {
         Lenni = { id = "XS6NR2Q-DHVB5G4-P43CHWR-TVBIY5A-FCIS7CU-S5UVNZA-5YPJYST-2EO2GAG"; };
         Puenktchen = { id = "VP3YVIM-JNSZTXV-7AS7FA2-3W5QKH6-XOWXX7N-STUR4JR-PR6SPCV-HJZMAAN"; };
+        Damin = { id = "HAGKFGG-EMCPKHG-Y7V2ACJ-DJVAIIA-A6TNGTQ-VWPB3F5-PES673W-W2YBJAD"; };
       };
       folders = {
         "Documents" = {
@@ -26,7 +27,7 @@
         "Enpass" = {
           id = "ciksm-xsw4m";
           path = "/mnt/data/services/syncthing/data/Enpass";
-          devices = [ "Lenni" "Puenktchen" ];
+          devices = [ "Lenni" "Puenktchen" "Damin" ];
         };
         "Pictures" = {
           id = "po4qj-q9t0t";
diff --git a/hosts/desktop/remoteBuilder.nix b/hosts/desktop/remoteBuilder.nix
index c9e24dd..c30b0fd 100644
--- a/hosts/desktop/remoteBuilder.nix
+++ b/hosts/desktop/remoteBuilder.nix
@@ -4,7 +4,7 @@
 	nix.buildMachines = [ {
 	  hostName = "Anton";
     sshUser = "builder";
-	  system = "x86_64-linux";
+	  systems = [ "x86_64-linux" "aarch64-linux" ];
     protocol = "ssh";
 	  # if the builder supports building for multiple architectures, 
 	  # replace the previous line by, e.g.
diff --git a/hosts/server/builder.nix b/hosts/server/builder.nix
index 402c6e2..3d24bc4 100644
--- a/hosts/server/builder.nix
+++ b/hosts/server/builder.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ config, ... }:
 {
   users.users.builder = {
     group = "builder";
@@ -8,4 +8,7 @@
   };
   users.groups.builder = { };
   nix.settings.trusted-users = [ "builder" "willifan" ];
+
+  boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
+  nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
 }