From 71b00650d0f51f34edd535d853cc275fc396f068 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 4 Dec 2022 22:07:07 +0000 Subject: [PATCH] ci-root: restrict which home-manager stuff we build on macOS --- ci-root.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci-root.nix b/ci-root.nix index 9ad4cf62be..b1c4af6dca 100644 --- a/ci-root.nix +++ b/ci-root.nix @@ -40,7 +40,9 @@ let }; x86_64-darwin = { - home-manager = depot.ops.home-manager-ext.built; + home-manager = { + inherit (depot.ops.home-manager-ext.built) base client; + }; }; aarch64-darwin = x86_64-darwin; }.${builtins.currentSystem};