From be47076928f2c467ee6c39d348147721cab6dbbf Mon Sep 17 00:00:00 2001 From: Riley Apeldoorn Date: Tue, 23 May 2023 10:47:29 +0200 Subject: [PATCH] Fix nix trusted users --- shared/core/nix.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shared/core/nix.nix b/shared/core/nix.nix index 7886deb..f0e55fd 100644 --- a/shared/core/nix.nix +++ b/shared/core/nix.nix @@ -13,6 +13,10 @@ in with lib; { ''; nix.registry.nixpkgs.flake = nixpkgs; nix.registry.pwnix.flake = pwnix; + nix.settings.trusted-users = [ + "@wheel" + "root" + ]; }; }