docs/users: add explanation for groups

This commit is contained in:
Johannes Kirschbauer
2025-07-13 11:33:22 +02:00
parent 77736090fd
commit 6f13a8ec85

View File

@@ -32,10 +32,10 @@ The example shows how to add a user called `jon`:
roles.default.settings = {
user = "jon"; # (3)
groups = [
"wheel"
"networkmanager"
"video"
"input"
"wheel" # Allow using 'sudo'
"networkmanager" # Allows to manage network connections.
"video" # Allows to access video devices.
"input" # Allows to access input devices.
];
};
};