diff options
| -rw-r--r-- | etc/guix/system.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index 2baeabe..1965708 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -51,13 +51,14 @@ (host-name "velhinho") (users (append - (let ((user-groups '("wheel" "netdev" "audio" "video"))) + (let ((user-groups '("netdev" "audio" "video")) + (admin-groups '("wheel"))) (list (user-account (name "andreh") (comment "EuAndreh") (group "users") - (supplementary-groups user-groups)) + (supplementary-groups (append admin-groups user-groups))) (user-account (name "other") (comment "Other Self") |
