blob: 4d3b2c0dcafa5600d0f3da0a89418d369b4a947f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(define-module (users vmail))
(define vmail-name
"vmail")
(define-public vmail-account
((@ (gnu system accounts) user-account)
(name vmail-name)
(group vmail-name)
(comment "used to own and manage mailboxes")
(home-directory "/home/vmail")
(system? #t)))
|