aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/accounts.scm
blob: 586cff1842e3e8e6192ad62f52e5a3d2ef8b34fc (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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 system accounts)
  #:use-module (guix records)
  #:use-module (ice-9 match)
  #:export (user-account
            user-account?
            user-account-name
            user-account-password
            user-account-uid
            user-account-group
            user-account-supplementary-groups
            user-account-comment
            user-account-home-directory
            user-account-create-home-directory?
            user-account-shell
            user-account-system?

            user-group
            user-group?
            user-group-name
            user-group-password
            user-group-id
            user-group-system?

            sexp->user-account
            sexp->user-group

            default-shell))


;;; Commentary:
;;;
;;; Data structures representing user accounts and user groups.  This is meant
;;; to be used both on the host side and at run time--e.g., in activation
;;; snippets.
;;;
;;; Code:

(define default-shell
  ;; Default shell for user accounts (a string or string-valued gexp).
  (make-parameter "/bin/sh"))

(define-record-type* <user-account>
  user-account make-user-account
  user-account?
  (name           user-account-name)
  (password       user-account-password (default #f))
  (uid            user-account-uid (default #f))
  (group          user-account-group)             ; number | string
  (supplementary-groups user-account-supplementary-groups
                        (default '()))            ; list of strings
  (comment        user-account-comment (default ""))
  (home-directory user-account-home-directory (thunked)
                  (default (default-home-directory this-record)))
  (create-home-directory? user-account-create-home-directory? ;Boolean
                          (default #t))
  (shell          user-account-shell              ; gexp
                  (default (default-shell)))
  (system?        user-account-system?            ; Boolean
                  (default #f)))

(define-record-type* <user-group>
  user-group make-user-group
  user-group?
  (name           user-group-name)
  (password       user-group-password (default #f))
  (id             user-group-id (default #f))
  (system?        user-group-system?              ; Boolean
                  (default #f)))

(define (default-home-directory account)
  "Return the default home directory for ACCOUNT."
  (string-append "/home/" (user-account-name account)))

(define (sexp->user-group sexp)
  "Take SEXP, a tuple as returned by 'user-group->gexp', and turn it into a
user-group record."
  (match sexp
    ((name password id system?)
     (user-group (name name)
                 (password password)
                 (id id)
                 (system? system?)))))

(define (sexp->user-account sexp)
  "Take SEXP, a tuple as returned by 'user-account->gexp', and turn it into a
user-account record."
  (match sexp
    ((name uid group supplementary-groups comment home-directory
           create-home-directory? shell password system?)
     (user-account (name name) (uid uid) (group group)
                   (supplementary-groups supplementary-groups)
                   (comment comment)
                   (home-directory home-directory)
                   (create-home-directory? create-home-directory?)
                   (shell shell) (password password)
                   (system? system?)))))
variable. Efraim Flashner 2023-02-08gnu: sgabios: Don't build for a specific target....* gnu/packages/firmware.scm (sgabios)[arguments]: Set target to #f since we're building a firmware file. Efraim Flashner 2023-02-08gnu: seabios: Don't build for a specific target....* gnu/packages/firmware.scm (seabios)[arguments]: Set target to #f since we're producing a firmware file. Efraim Flashner 2023-02-08gnu: openbios-qemu-ppc: Don't build for a specific target....* gnu/packages/firmware.scm (openbios-qemu-ppc)[arguments]: Set target to #f since we're producing a firmware file and not a binary. Efraim Flashner 2023-02-08gnu: openbios-qemu-ppc: Fix building on aarch64-linux....* gnu/packages/firmware.scm (openbios-qemu-ppc)[arguments]: When building from aarch64-linux build for armhf-linux. Efraim Flashner 2023-01-18gnu: make-arm-trusted-firmware: Simplify build....Reuse knowledge from recent U-Boot modifications to streamline the package definition. * gnu/packages/firmware.scm (make-arm-trusted-firmware): Change optional argument ARCH to keyword TRIPLET. Default to aarch64-linux-gnu. [arguments]: Use gexps. Add a #:target argument. Streamline how the CROSS_COMPILE make flag is computed. [native-inputs]: Delete field. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Maxim Cournoyer 2023-01-13gnu: ovmf-arm: Fix syntax error on armhf-linux....* gnu/packages/firmware.scm (ovmf-arm)[arguments]: Don't add an empty set-env phase when building for armhf-linux. Marius Bakke 2023-01-13gnu: ovmf-aarch64: Fix syntax error on aarch64-linux....* gnu/packages/firmware.scm (ovmf-aarch64)[arguments]: Don't add an empty set-env phase when building for aarch64. Marius Bakke 2023-01-05gnu: ath9k-htc-firmware: Fix deprecation warnings....* gnu/packages/firmware.scm (ath9k-htc-firmware): Invoke cross-binutils using keyword arguments. Maxim Cournoyer 2022-12-25gnu: Add opensbi-qemu....* gnu/packages/firmware.scm (opensbi-qemu): New variable. Marius Bakke 2022-12-25gnu: opensbi: Use the same source file name regardless of variant....* gnu/packages/firmware.scm (make-opensbi-package)[source](file-name): Don't use the NAME variable which changes depending on the variant. Marius Bakke 2022-12-25gnu: Add openbios-qemu-ppc....* gnu/packages/firmware.scm (make-openbios-package): New procedure. (openbios-qemu-ppc): New variable. * gnu/packages/patches/openbios-gcc-warnings.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. Marius Bakke 2022-12-23gnu: sgabios: Fix build on cross-build architectures....* gnu/packages/firmware.scm (sgabios)[arguments]: When cross-building add a make-flag to use the correct objcopy. Efraim Flashner 2022-12-22gnu: Add sgabios....* gnu/packages/firmware.scm (sgabios): New variable. Marius Bakke 2022-12-22gnu: Install QEMU firmare files to 'share/qemu'....This paves the way for using a native search path in the future. * gnu/packages/bootloaders.scm (ipxe-qemu)[arguments]: Install firmware files to 'share/qemu' instead of 'share/firmware'. * gnu/packages/firmware.scm (seabios-qemu)[arguments]: Likewise. * gnu/packages/virtualization.scm (qemu)[arguments]: Adjust accordingly. Marius Bakke 2022-12-22gnu: SeaBIOS: Split QEMU variants out to separate package....* gnu/packages/firmware.scm (seabios)[arguments]: Move custom build and install phases out to ... (seabios-qemu): ... this new variable. * gnu/packages/virtualization.scm (qemu)[inputs]: Change from SEABIOS to SEABIOS-QEMU. Marius Bakke 2022-12-21gnu: seabios: Enable for all architectures....* gnu/packages/firmware.scm (seabios)[native-inputs]: When not building from an i686-linux or x86_64-linux machine add cross-gcc and cross-binutils for i686-linux-gnu. [arguments]: When not building from an i686-linux or x86_64-linux machine adjust the Makefile to find the cross build tools needed. [supported-architectures]: Remove field. Efraim Flashner 2022-12-20gnu: seabios: Limit to i686-linux and x86_64-linux....* gnu/packages/firmware.scm (seabios)[supported-systems]: New field. Efraim Flashner 2022-12-20gnu: Add edk2-tools....* gnu/packages/firmware.scm (edk2-tools): New variable. Marius Bakke 2022-12-19gnu: SeaBIOS: Prettify version string....* gnu/packages/firmware.scm (seabios)[arguments]: Display version as "1.16.1/GNU Guix" instead of "1.16.1-guix". Marius Bakke 2022-12-19gnu: SeaBIOS: Build in parallel....* gnu/packages/firmware.scm (seabios)[arguments]: Use N-PAR-FOR-EACH to build the various targets. Marius Bakke 2022-12-19gnu: SeaBIOS: Build more BIOSen....* gnu/packages/firmware.scm (seabios)[arguments]: Build the "128k" and "microvm" BIOSen expected by QEMU. Fix installation of vgabios. Marius Bakke 2022-12-19gnu: SeaBIOS: Remove pre-generated code....* gnu/packages/firmware.scm (seabios)[source](modules, snippet): New fields. [native-inputs]: Add ACPICA. [arguments]: Add build-iasl phase. Marius Bakke 2022-12-19gnu: SeaBIOS: Use G-expression....* gnu/packages/firmware.scm (seabios)[arguments]: Rewrite as gexp. Marius Bakke 2022-12-17gnu: SeaBIOS: Simplify build....* gnu/packages/firmware.scm (seabios)[arguments]: Don't install bios.bin twice. Drop redundant append step. Marius Bakke 2022-12-17gnu: SeaBIOS: Build verbosely....* gnu/packages/firmware.scm (seabios)[arguments]: Add "V=1" to #:make-flags. Marius Bakke 2022-12-17gnu: SeaBIOS: Update to 1.16.1....* gnu/packages/firmware.scm (seabios): Update to 1.16.1. Marius Bakke 2022-11-24gnu: arm-trusted-firmware: Remove blobs in a snippet....* gnu/packages/firmware.scm (make-arm-trusted-firmware)[source]: Add snippet to remove binary blobs. [arguments]: Remove related phase. Efraim Flashner 2022-11-24gnu: arm-trusted-firmware: Update to 2.8....* gnu/packages/firmware.scm (make-arm-trusted-firmware): Update to 2.8. [arguments]: Remove trailing #t from phases. Clean up regexes. Efraim Flashner