diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-11-10 22:27:28 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-10 22:42:14 +0100 |
commit | b756d3da4c4734ab507cec312a872fe1a3975598 (patch) | |
tree | b928f39f1d1193525b49c9e7948173278746d2fc /gnu/system | |
parent | d6e2a622c49184390d362abf97ca1c56498cfd6a (diff) | |
download | guix-b756d3da4c4734ab507cec312a872fe1a3975598.tar guix-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/system')
-rw-r--r-- | gnu/system/os-config.tmpl | 7 |
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"))))) |