diff options
author | EuAndreh <eu@euandre.org> | 2022-11-25 14:05:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-25 14:05:06 -0300 |
commit | 1abaac30ef91458a74f04129945b2ebb1a4b8c28 (patch) | |
tree | ec85ac6512302f09d4c8f4607b7d2beac9280858 | |
parent | Makefile: Use the same rule to build both manpages from POD (diff) | |
download | dotfiles-1abaac30ef91458a74f04129945b2ebb1a4b8c28.tar.gz dotfiles-1abaac30ef91458a74f04129945b2ebb1a4b8c28.tar.xz |
etc/guix/system.scm: Add new group "cache" and include myself in it
-rw-r--r-- | etc/guix/system.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/guix/system.scm b/etc/guix/system.scm index ea77089..4dedea2 100644 --- a/etc/guix/system.scm +++ b/etc/guix/system.scm @@ -420,8 +420,14 @@ Seiko Epson Color Ink Jet Printers.") (name whoami) (comment "EuAndreh") (group "users") - (supplementary-groups '("netdev" "audio" "video" "wheel" "kvm" "docker")))) + (supplementary-groups '("netdev" "audio" "video" "wheel" "kvm" "docker" "cache")))) %base-user-accounts)) + (groups + (append + (list + (user-group + (name "cache"))) + %base-groups)) (packages (append (map (compose list specification->package+output symbol->string) |