From 0a7a6154d2f27b7eb2dcc44f1d295c49b2dabd2f Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 15 Dec 2023 22:26:13 -0600 Subject: [PATCH] fix(luna): correctly trust `wheel` groups for Nix --- hosts/luna/modules/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/luna/modules/nix.nix b/hosts/luna/modules/nix.nix index 4e8fede..07eb4cf 100755 --- a/hosts/luna/modules/nix.nix +++ b/hosts/luna/modules/nix.nix @@ -3,7 +3,7 @@ settings = { experimental-features = [ "nix-command" "flakes" ]; auto-optimise-store = true; - trusted-users = [ "wheel" ]; + trusted-users = [ "@wheel" ]; }; gc = { automatic = true;