system: Add wheel group to trusted users

Should prevent issues we ran into previously with things like
nixos-rebuild on remote hosts through ssh with non-root accounts.
This commit is contained in:
Donovan Glover 2024-06-17 11:24:51 -04:00
parent 66c01167d0
commit fb5c7849d0
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -95,6 +95,11 @@ in
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
auto-optimise-store = true;
warn-dirty = false;
trusted-users = [
"root"
"@wheel"
];
};
};