dannym pushed a commit to branch wip-installer-2
in repository guix.
commit b43e6eae7ebcc04367f8978cf9d75382611f5504
Author: John Darrington <[email protected]>
Date: Sun Feb 12 14:32:57 2017 +0100
installer: Remove non-existant supplementary group.
* gnu/system/installer/user-edit.scm (user-edit-key-handler): "desktop"
--> "dialout"
---
gnu/system/installer/user-edit.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/system/installer/user-edit.scm
b/gnu/system/installer/user-edit.scm
index b3f62d6..23c1587 100644
--- a/gnu/system/installer/user-edit.scm
+++ b/gnu/system/installer/user-edit.scm
@@ -67,7 +67,7 @@
(cons
(user-account
(name (form-get-value form 'name))
- (supplementary-groups '("video" "audio" "desktop"))
+ (supplementary-groups '("video" "audio" "floppy" "dialout"))
(group "users")
(comment (form-get-value form 'comment))
(home-directory (form-get-value form 'home)))