diff options
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/guix/system.scm | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index 89c00ef..8072b4f 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -44,19 +44,12 @@ (host-name "velhinho") (users (append - (let ((user-groups '("netdev" "audio" "video")) - (admin-groups '("wheel"))) - (list - (user-account - (name "andreh") - (comment "EuAndreh") - (group "users") - (supplementary-groups (append admin-groups user-groups))) - (user-account - (name "other") - (comment "Other Self") - (group "users") - (supplementary-groups user-groups)))) + (list + (user-account + (name "andreh") + (comment "EuAndreh") + (group "users") + (supplementary-groups '("netdev" "audio" "video" "wheel")))) %base-user-accounts)) (packages (append |
