summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-10 22:27:28 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-10 22:42:14 +0100
commitb756d3da4c4734ab507cec312a872fe1a3975598 (patch)
treeb928f39f1d1193525b49c9e7948173278746d2fc /gnu
parentd6e2a622c49184390d362abf97ca1c56498cfd6a (diff)
downloadguix-patches-b756d3da4c4734ab507cec312a872fe1a3975598.tar
guix-patches-b756d3da4c4734ab507cec312a872fe1a3975598.tar.gz
doc: Mention "audio" and "video" groups in configuration template.
* gnu/system/os-config.tmpl (users): Add "audio" and "video" groups and explain.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system/os-config.tmpl7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/system/os-config.tmpl b/gnu/system/os-config.tmpl
index ad58606f67..662f085bfd 100644
--- a/gnu/system/os-config.tmpl
+++ b/gnu/system/os-config.tmpl
@@ -26,6 +26,9 @@
(group "users")
;; Adding the account to the "wheel" group
- ;; makes it a sudoer.
- (supplementary-groups '("wheel"))
+ ;; makes it a sudoer. Adding it to "audio"
+ ;; and "video" allows the user to play sound
+ ;; and access the webcam.
+ (supplementary-groups '("wheel"
+ "audio" "video"))
(home-directory "/home/alice")))))