From 799491febaadffbe37d0bbc6803cbd27cafcda22 Mon Sep 17 00:00:00 2001 From: Gabriella Gonzalez Date: Sat, 24 Dec 2022 08:47:59 -0600 Subject: darwin.builder: Fix `system` for `install-credentials` The script was being mistakenly being built for the guest system instead of the host system --- nixos/modules/profiles/macos-builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nixos') diff --git a/nixos/modules/profiles/macos-builder.nix b/nixos/modules/profiles/macos-builder.nix index 77f3224a72941..0cbac3bd61fed 100644 --- a/nixos/modules/profiles/macos-builder.nix +++ b/nixos/modules/profiles/macos-builder.nix @@ -62,7 +62,7 @@ in # This installCredentials script is written so that it's as easy as # possible for a user to audit before confirming the `sudo` - installCredentials = pkgs.writeShellScript "install-credentials" '' + installCredentials = hostPkgs.writeShellScript "install-credentials" '' KEYS="''${1}" INSTALL=${hostPkgs.coreutils}/bin/install "''${INSTALL}" -g nixbld -m 600 "''${KEYS}/${user}_${keyType}" ${privateKey} -- cgit 1.4.1