Skip to content

Commit

Permalink
Always trust @wheel
Browse files Browse the repository at this point in the history
Signed-off-by: Joonas Rautiola <joonas.rautiola@unikie.com>
  • Loading branch information
joinemm committed Aug 30, 2024
1 parent 0359bfc commit 83832c6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions hosts/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ in
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;

settings = {
# root is trusted by default, but only when other users aren't specified.
# this line is here to merge the arrays when additional users are added
trusted-users = [ "root" ];
# We can trust root and any users with sudo rights
trusted-users = [
"root"
"@wheel"
];
# Enable flakes and new 'nix' command
experimental-features = "nix-command flakes";
# Subsituters
Expand Down

0 comments on commit 83832c6

Please sign in to comment.