From 84767169056e3a6e5a2f6df0f13ac6af00882a10 Mon Sep 17 00:00:00 2001 From: Dustin Lyons Date: Thu, 19 Sep 2024 15:37:52 -0400 Subject: [PATCH] Use new style Nix build user after macOS upgrade --- hosts/darwin/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/darwin/default.nix b/hosts/darwin/default.nix index d4ec7c1c..de3d791d 100644 --- a/hosts/darwin/default.nix +++ b/hosts/darwin/default.nix @@ -16,6 +16,7 @@ let user = "dustin"; in # Setup user, packages, programs nix = { package = pkgs.nix; + configureBuildUsers = true; settings.trusted-users = [ "@admin" "${user}" ]; settings.substituters = [ "https://nix-community.cachix.org" "https://cache.nixos.org" ];