2018-12-05 06:55:41 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2018 Mathieu Othacehe <m.othacehe@gmail.com>
|
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu installer user)
|
|
|
|
#:use-module (guix records)
|
2019-04-24 21:54:28 +02:00
|
|
|
#:use-module (srfi srfi-1)
|
2018-12-05 06:55:41 +01:00
|
|
|
#:export (<user>
|
|
|
|
user
|
|
|
|
make-user
|
|
|
|
user-name
|
2019-04-28 22:28:00 +02:00
|
|
|
user-real-name
|
2018-12-05 06:55:41 +01:00
|
|
|
user-group
|
|
|
|
user-home-directory
|
2019-04-24 17:59:06 +02:00
|
|
|
user-password
|
2018-12-05 06:55:41 +01:00
|
|
|
|
|
|
|
users->configuration))
|
|
|
|
|
|
|
|
(define-record-type* <user>
|
|
|
|
user make-user
|
|
|
|
user?
|
|
|
|
(name user-name)
|
2019-04-28 22:28:00 +02:00
|
|
|
(real-name user-real-name
|
|
|
|
(default ""))
|
2018-12-05 06:55:41 +01:00
|
|
|
(group user-group
|
|
|
|
(default "users"))
|
2019-04-24 17:59:06 +02:00
|
|
|
(password user-password)
|
2018-12-05 06:55:41 +01:00
|
|
|
(home-directory user-home-directory))
|
|
|
|
|
|
|
|
(define (users->configuration users)
|
|
|
|
"Return the configuration field for USERS."
|
2019-04-24 21:54:28 +02:00
|
|
|
(define (user->sexp user)
|
|
|
|
`(user-account
|
|
|
|
(name ,(user-name user))
|
2019-04-28 22:28:00 +02:00
|
|
|
(comment ,(user-real-name user))
|
2019-04-24 21:54:28 +02:00
|
|
|
(group ,(user-group user))
|
|
|
|
(home-directory ,(user-home-directory user))
|
|
|
|
(supplementary-groups '("wheel" "netdev"
|
|
|
|
"audio" "video"))))
|
|
|
|
|
2018-12-05 06:55:41 +01:00
|
|
|
`((users (cons*
|
2019-04-24 21:54:28 +02:00
|
|
|
,@(filter-map (lambda (user)
|
|
|
|
;; Do not emit a 'user-account' form for "root".
|
|
|
|
(and (not (string=? (user-name user) "root"))
|
|
|
|
(user->sexp user)))
|
|
|
|
users)
|
|
|
|
%base-user-accounts))))
|