From 26dad9dce19606c5d7cb60efe42598f75077891a Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 5 Sep 2021 09:08:28 +0000 Subject: [PATCH] ci-root: teach about aarch64-darwin --- ci-root.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci-root.nix b/ci-root.nix index e3cbcbebb3..4003999ca9 100644 --- a/ci-root.nix +++ b/ci-root.nix @@ -8,7 +8,7 @@ let lib = pkgs.lib; prefixAttrs = prefix: lib.mapAttrsToList (name: value: { name = "${prefix}-${name}"; path = value; }); - ciBits = { + ciBits = rec { x86_64-linux = { machine = depot.ops.nixos.systems; pkgs = builtins.removeAttrs depot.nix.pkgs [ "grafana-plugins" "windows" "unifiHacked" ]; @@ -24,6 +24,7 @@ let x86_64-darwin = { home-manager = depot.ops.home-manager-ext.built; }; + aarch64-darwin = x86_64-darwin; }.${builtins.currentSystem}; in pkgs.linkFarm "ci" (builtins.concatLists (lib.mapAttrsToList prefixAttrs ciBits))