nixos: system: nix: expand trusted users

This commit is contained in:
Bruno BELANYI 2024-03-01 20:48:44 +00:00
parent 56c0c28b02
commit 4d25609b26

View file

@ -56,6 +56,8 @@ in
settings = { settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];
# Trusted users are equivalent to root, and might as well allow wheel
trusted-users = [ "root" "@wheel" ];
}; };
}; };
} }