diff options
author | EuAndreh <eu@euandre.org> | 2022-10-02 08:23:38 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-02 08:23:38 -0300 |
commit | 0586552b58b7c9ad49a4f5457e85c0a17467ab61 (patch) | |
tree | d2bdc9b3190617b78679ef3233c9727ec7d05614 /etc | |
parent | etc/guix/system.scm: Remove xmonad packages (diff) | |
download | dotfiles-0586552b58b7c9ad49a4f5457e85c0a17467ab61.tar.gz dotfiles-0586552b58b7c9ad49a4f5457e85c0a17467ab61.tar.xz |
etc/guix/system.scm: Remove "Other Self" account
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 |