about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--sys/atuin.nix2
-rw-r--r--sys/mbp.nix2
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/atuin.nix b/sys/atuin.nix
index 91f16244dc37..724f146cda5b 100644
--- a/sys/atuin.nix
+++ b/sys/atuin.nix
@@ -136,6 +136,8 @@ in
     ../modules/users
   ];
 
+  nixpkgs.hostPlatform.system = "x86_64-linux";
+
   fileSystems = {
     "/" = { device = "rpool/root"; fsType = "zfs"; neededForBoot = true; };
     "/boot" = { device = "/dev/disk/by-partlabel/boot"; fsType = "ext4"; };
diff --git a/sys/mbp.nix b/sys/mbp.nix
index 202933a9553d..0cb8a5160bbd 100644
--- a/sys/mbp.nix
+++ b/sys/mbp.nix
@@ -9,6 +9,8 @@
     ../modules/workstation/physical
   ];
 
+  nixpkgs.hostPlatform.system = "aarch64-linux";
+
   hardware.enableRedistributableFirmware = true;
 
   boot.loader.systemd-boot.enable = true;