ci-root: restrict which home-manager stuff we build on macOS

This commit is contained in:
Luke Granger-Brown 2022-12-04 22:07:07 +00:00
parent c758bcb61a
commit 71b00650d0

View file

@ -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};