From 2a591a76ca4d73c2b58d4d43c37570bb65491c0f Mon Sep 17 00:00:00 2001 From: Phil Pluckthun Date: Sun, 22 Jun 2025 20:39:48 +0100 Subject: [PATCH] Add extra-trusted-users --- modules/base/nix-config.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/base/nix-config.nix b/modules/base/nix-config.nix index 3b54eef..5eba1dc 100644 --- a/modules/base/nix-config.nix +++ b/modules/base/nix-config.nix @@ -32,6 +32,7 @@ with lib; mkMerge [ ]; trusted-users = [ "root" "@wheel" ]; allowed-users = [ "root" "@wheel" "${user}" ]; + extra-trusted-users = [ "${user}" ]; # on Apple Silicon, Rosetta 2 allows for this extra-platforms = mkIf (helpers.system == "aarch64-darwin") [ helpers.system "x86_64-darwin" ]; }; -- 2.51.2