diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-06-16 14:36:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-16 14:36:53 +0200 |
commit | 126eea48e300ab365c46ce062776e74a3907a7c8 (patch) | |
tree | 1574695df4c03248e547248a11bfc5c8a1fd01d8 | |
parent | 1a8ca85d488ddacf26f2aeddddab926c0e081d98 (diff) |
do not refer to `trusted-users` another time
-rw-r--r-- | src/nix/daemon.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nix/daemon.cc b/src/nix/daemon.cc index d0e70a7b1..43d2f8f86 100644 --- a/src/nix/daemon.cc +++ b/src/nix/daemon.cc @@ -76,7 +76,8 @@ struct AuthorizationSettings : Config { A list user names, separated by whitespace. These users are allowed to connect to the Nix daemon. - As with the [`trusted-users`](#conf-trusted-users) option, you can specify groups by prefixing names with `@`. + You can specify groups by prefixing names with `@`. + For instance, `@wheel` means all users in the `wheel` group. Also, you can allow all users by specifying `*`. > **Note** |