2013-12-09 15:32:36 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-01-25 11:22:53 -05:00
|
|
|
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2013-12-09 15:32:36 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; 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)
|
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix monads)
|
2014-04-26 10:36:48 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2013-12-09 15:32:36 -05:00
|
|
|
|
#:use-module (guix records)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
#:use-module (gnu packages bash)
|
2014-01-13 17:21:47 -05:00
|
|
|
|
#:use-module (gnu packages admin)
|
2014-05-29 17:13:11 -04:00
|
|
|
|
#:use-module (gnu packages linux)
|
2013-12-09 15:32:36 -05:00
|
|
|
|
#:use-module (gnu packages package-management)
|
2014-02-19 14:58:24 -05:00
|
|
|
|
#:use-module (gnu services)
|
|
|
|
|
#:use-module (gnu services dmd)
|
|
|
|
|
#:use-module (gnu services base)
|
2013-12-09 15:32:36 -05:00
|
|
|
|
#:use-module (gnu system grub)
|
|
|
|
|
#:use-module (gnu system shadow)
|
|
|
|
|
#:use-module (gnu system linux)
|
2014-01-29 07:04:00 -05:00
|
|
|
|
#:use-module (gnu system linux-initrd)
|
2014-05-20 15:59:08 -04:00
|
|
|
|
#:use-module (gnu system file-systems)
|
2013-12-09 15:32:36 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
|
|
|
|
#:export (operating-system
|
|
|
|
|
operating-system?
|
2014-05-18 15:58:01 -04:00
|
|
|
|
|
|
|
|
|
operating-system-bootloader
|
2013-12-09 15:32:36 -05:00
|
|
|
|
operating-system-services
|
2014-05-09 16:58:46 -04:00
|
|
|
|
operating-system-user-services
|
2013-12-09 15:32:36 -05:00
|
|
|
|
operating-system-packages
|
2014-01-31 08:36:48 -05:00
|
|
|
|
operating-system-host-name
|
|
|
|
|
operating-system-kernel
|
|
|
|
|
operating-system-initrd
|
|
|
|
|
operating-system-users
|
|
|
|
|
operating-system-groups
|
2014-05-31 16:01:05 -04:00
|
|
|
|
operating-system-issue
|
2014-01-31 08:36:48 -05:00
|
|
|
|
operating-system-packages
|
|
|
|
|
operating-system-timezone
|
|
|
|
|
operating-system-locale
|
2014-05-02 18:26:07 -04:00
|
|
|
|
operating-system-file-systems
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-27 08:58:15 -04:00
|
|
|
|
operating-system-derivation
|
2014-05-02 18:26:07 -04:00
|
|
|
|
operating-system-profile
|
2014-05-20 15:59:08 -04:00
|
|
|
|
operating-system-grub.cfg))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
;;;
|
|
|
|
|
;;; This module supports whole-system configuration.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
|
|
;; System-wide configuration.
|
|
|
|
|
;; TODO: Add per-field docstrings/stexi.
|
|
|
|
|
(define-record-type* <operating-system> operating-system
|
|
|
|
|
make-operating-system
|
|
|
|
|
operating-system?
|
|
|
|
|
(kernel operating-system-kernel ; package
|
|
|
|
|
(default linux-libre))
|
2014-05-18 15:58:01 -04:00
|
|
|
|
(bootloader operating-system-bootloader) ; <grub-configuration>
|
|
|
|
|
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(initrd operating-system-initrd ; (list fs) -> M derivation
|
|
|
|
|
(default qemu-initrd))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
(host-name operating-system-host-name) ; string
|
|
|
|
|
|
|
|
|
|
(file-systems operating-system-file-systems ; list of fs
|
|
|
|
|
(default '()))
|
|
|
|
|
|
|
|
|
|
(users operating-system-users ; list of user accounts
|
|
|
|
|
(default '()))
|
|
|
|
|
(groups operating-system-groups ; list of user groups
|
|
|
|
|
(default (list (user-group
|
|
|
|
|
(name "root")
|
2014-05-01 09:29:24 -04:00
|
|
|
|
(id 0)))))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-05-12 17:37:13 -04:00
|
|
|
|
(skeletons operating-system-skeletons ; list of name/monadic value
|
|
|
|
|
(default (default-skeletons)))
|
2014-05-31 16:01:05 -04:00
|
|
|
|
(issue operating-system-issue ; string
|
|
|
|
|
(default %default-issue))
|
2014-05-12 17:37:13 -04:00
|
|
|
|
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(packages operating-system-packages ; list of (PACKAGE OUTPUT...)
|
2013-12-09 17:45:27 -05:00
|
|
|
|
(default (list coreutils ; or just PACKAGE
|
|
|
|
|
grep
|
|
|
|
|
sed
|
|
|
|
|
findutils
|
|
|
|
|
guile
|
|
|
|
|
bash
|
|
|
|
|
(@ (gnu packages dmd) dmd)
|
2013-12-10 15:46:59 -05:00
|
|
|
|
guix
|
|
|
|
|
tzdata)))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
(timezone operating-system-timezone) ; string
|
|
|
|
|
(locale operating-system-locale) ; string
|
|
|
|
|
|
2014-05-09 16:58:46 -04:00
|
|
|
|
(services operating-system-user-services ; list of monadic services
|
2014-04-30 16:17:56 -04:00
|
|
|
|
(default %base-services))
|
|
|
|
|
|
|
|
|
|
(pam-services operating-system-pam-services ; list of PAM services
|
|
|
|
|
(default (base-pam-services)))
|
|
|
|
|
(setuid-programs operating-system-setuid-programs
|
2014-05-01 09:29:24 -04:00
|
|
|
|
(default %setuid-programs)) ; list of string-valued gexps
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-05-01 09:29:24 -04:00
|
|
|
|
(sudoers operating-system-sudoers ; /etc/sudoers contents
|
|
|
|
|
(default %sudoers-specification)))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Derivation.
|
|
|
|
|
;;;
|
|
|
|
|
|
|
|
|
|
(define* (union inputs
|
|
|
|
|
#:key (guile (%guile-for-build)) (system (%current-system))
|
|
|
|
|
(name "union"))
|
|
|
|
|
"Return a derivation that builds the union of INPUTS. INPUTS is a list of
|
|
|
|
|
input tuples."
|
|
|
|
|
(define builder
|
2014-04-27 16:40:48 -04:00
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build union))
|
|
|
|
|
|
|
|
|
|
(define inputs '#$inputs)
|
|
|
|
|
|
|
|
|
|
(setvbuf (current-output-port) _IOLBF)
|
|
|
|
|
(setvbuf (current-error-port) _IOLBF)
|
|
|
|
|
|
|
|
|
|
(format #t "building union `~a' with ~a packages...~%"
|
|
|
|
|
#$output (length inputs))
|
|
|
|
|
(union-build #$output inputs)))
|
|
|
|
|
|
|
|
|
|
(gexp->derivation name builder
|
|
|
|
|
#:system system
|
|
|
|
|
#:modules '((guix build union))
|
|
|
|
|
#:guile-for-build guile
|
|
|
|
|
#:local-build? #t))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-27 10:50:34 -04:00
|
|
|
|
(define* (file-union name files)
|
2013-12-09 15:32:36 -05:00
|
|
|
|
"Return a derivation that builds a directory containing all of FILES. Each
|
|
|
|
|
item in FILES must be a list where the first element is the file name to use
|
2014-04-27 10:50:34 -04:00
|
|
|
|
in the new directory, and the second element is a gexp denoting the target
|
|
|
|
|
file."
|
|
|
|
|
(define builder
|
|
|
|
|
#~(begin
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(chdir #$output)
|
|
|
|
|
#$@(map (match-lambda
|
|
|
|
|
((target source)
|
|
|
|
|
#~(symlink #$source #$target)))
|
|
|
|
|
files)))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-27 10:50:34 -04:00
|
|
|
|
(gexp->derivation name builder))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-05-12 17:37:13 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Services.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-05-10 17:33:52 -04:00
|
|
|
|
(define (other-file-system-services os)
|
|
|
|
|
"Return file system services for the file systems of OS that are not marked
|
|
|
|
|
as 'needed-for-boot'."
|
|
|
|
|
(define file-systems
|
|
|
|
|
(remove (lambda (fs)
|
|
|
|
|
(or (file-system-needed-for-boot? fs)
|
|
|
|
|
(string=? "/" (file-system-mount-point fs))))
|
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
|
|
|
|
(sequence %store-monad
|
|
|
|
|
(map (match-lambda
|
2014-06-02 17:58:50 -04:00
|
|
|
|
(($ <file-system> device title target type flags opts
|
|
|
|
|
#f check?)
|
2014-05-10 17:33:52 -04:00
|
|
|
|
(file-system-service device target type
|
2014-06-02 17:58:50 -04:00
|
|
|
|
#:title title
|
2014-05-10 17:33:52 -04:00
|
|
|
|
#:check? check?
|
|
|
|
|
#:options opts)))
|
|
|
|
|
file-systems)))
|
|
|
|
|
|
2014-05-09 16:58:46 -04:00
|
|
|
|
(define (essential-services os)
|
|
|
|
|
"Return the list of essential services for OS. These are special services
|
|
|
|
|
that implement part of what's declared in OS are responsible for low-level
|
|
|
|
|
bookkeeping."
|
2014-05-10 17:33:52 -04:00
|
|
|
|
(mlet* %store-monad ((root-fs (root-file-system-service))
|
|
|
|
|
(other-fs (other-file-system-services os))
|
|
|
|
|
(procs (user-processes-service
|
|
|
|
|
(map (compose first service-provision)
|
|
|
|
|
other-fs)))
|
|
|
|
|
(host-name (host-name-service
|
|
|
|
|
(operating-system-host-name os))))
|
|
|
|
|
(return (cons* host-name procs root-fs other-fs))))
|
2014-05-09 16:58:46 -04:00
|
|
|
|
|
|
|
|
|
(define (operating-system-services os)
|
|
|
|
|
"Return all the services of OS, including \"internal\" services that do not
|
|
|
|
|
explicitly appear in OS."
|
|
|
|
|
(mlet %store-monad
|
|
|
|
|
((user (sequence %store-monad (operating-system-user-services os)))
|
|
|
|
|
(essential (essential-services os)))
|
|
|
|
|
(return (append essential user))))
|
|
|
|
|
|
2014-05-12 17:37:13 -04:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; /etc.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-05-31 16:01:05 -04:00
|
|
|
|
(define %default-issue
|
|
|
|
|
;; Default contents for /etc/issue.
|
|
|
|
|
"
|
|
|
|
|
This is the GNU system. Welcome.\n")
|
|
|
|
|
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(define* (etc-directory #:key
|
2013-12-10 15:46:59 -05:00
|
|
|
|
(locale "C") (timezone "Europe/Paris")
|
2014-05-31 16:01:05 -04:00
|
|
|
|
(issue "Hello!\n")
|
2014-05-12 17:37:13 -04:00
|
|
|
|
(skeletons '())
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(pam-services '())
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(profile "/run/current-system/profile")
|
2014-05-01 09:29:24 -04:00
|
|
|
|
(sudoers ""))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
"Return a derivation that builds the static part of the /etc directory."
|
|
|
|
|
(mlet* %store-monad
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
((pam.d (pam-services->directory pam-services))
|
2014-05-01 09:29:24 -04:00
|
|
|
|
(sudoers (text-file "sudoers" sudoers))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(login.defs (text-file "login.defs" "# Empty for now.\n"))
|
2014-02-19 15:30:16 -05:00
|
|
|
|
(shells (text-file "shells" ; used by xterm and others
|
|
|
|
|
"\
|
|
|
|
|
/bin/sh
|
2014-05-17 11:39:30 -04:00
|
|
|
|
/run/current-system/profile/bin/sh
|
|
|
|
|
/run/current-system/profile/bin/bash\n"))
|
2014-05-31 16:01:05 -04:00
|
|
|
|
(issue (text-file "issue" issue))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
;; TODO: Generate bashrc from packages' search-paths.
|
2014-02-05 16:22:51 -05:00
|
|
|
|
(bashrc (text-file* "bashrc" "
|
2013-12-09 15:32:36 -05:00
|
|
|
|
export PS1='\\u@\\h\\$ '
|
2013-12-10 15:46:59 -05:00
|
|
|
|
|
|
|
|
|
export LC_ALL=\"" locale "\"
|
|
|
|
|
export TZ=\"" timezone "\"
|
2014-02-05 16:22:51 -05:00
|
|
|
|
export TZDIR=\"" tzdata "/share/zoneinfo\"
|
2013-12-10 15:46:59 -05:00
|
|
|
|
|
2014-06-03 05:48:41 -04:00
|
|
|
|
export PATH=$HOME/.guix-profile/bin:/run/current-system/profile/bin
|
|
|
|
|
export PATH=/run/setuid-programs:/run/current-system/profile/sbin:$PATH
|
2013-12-09 15:32:36 -05:00
|
|
|
|
export CPATH=$HOME/.guix-profile/include:" profile "/include
|
|
|
|
|
export LIBRARY_PATH=$HOME/.guix-profile/lib:" profile "/lib
|
|
|
|
|
alias ls='ls -p --color'
|
|
|
|
|
alias ll='ls -l'
|
2014-05-12 17:37:13 -04:00
|
|
|
|
"))
|
|
|
|
|
(skel (skeleton-directory skeletons)))
|
2014-04-27 10:50:34 -04:00
|
|
|
|
(file-union "etc"
|
|
|
|
|
`(("services" ,#~(string-append #$net-base "/etc/services"))
|
|
|
|
|
("protocols" ,#~(string-append #$net-base "/etc/protocols"))
|
|
|
|
|
("rpc" ,#~(string-append #$net-base "/etc/rpc"))
|
|
|
|
|
("pam.d" ,#~#$pam.d)
|
|
|
|
|
("login.defs" ,#~#$login.defs)
|
|
|
|
|
("issue" ,#~#$issue)
|
2014-05-12 17:37:13 -04:00
|
|
|
|
("skel" ,#~#$skel)
|
2014-04-27 10:50:34 -04:00
|
|
|
|
("shells" ,#~#$shells)
|
|
|
|
|
("profile" ,#~#$bashrc)
|
|
|
|
|
("localtime" ,#~(string-append #$tzdata "/share/zoneinfo/"
|
|
|
|
|
#$timezone))
|
2014-05-01 09:29:24 -04:00
|
|
|
|
("sudoers" ,#~#$sudoers)))))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(define (operating-system-profile os)
|
2014-02-01 19:34:33 -05:00
|
|
|
|
"Return a derivation that builds the default profile of OS."
|
|
|
|
|
;; TODO: Replace with a real profile with a manifest.
|
|
|
|
|
(union (operating-system-packages os)
|
|
|
|
|
#:name "default-profile"))
|
|
|
|
|
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(define %root-account
|
|
|
|
|
;; Default root account.
|
|
|
|
|
(user-account
|
|
|
|
|
(name "root")
|
|
|
|
|
(password "")
|
|
|
|
|
(uid 0) (group "root")
|
|
|
|
|
(comment "System administrator")
|
|
|
|
|
(home-directory "/root")))
|
|
|
|
|
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(define (operating-system-accounts os)
|
|
|
|
|
"Return the user accounts for OS, including an obligatory 'root' account."
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(define users
|
|
|
|
|
;; Make sure there's a root account.
|
|
|
|
|
(if (find (lambda (user)
|
|
|
|
|
(and=> (user-account-uid user) zero?))
|
|
|
|
|
(operating-system-users os))
|
|
|
|
|
(operating-system-users os)
|
|
|
|
|
(cons %root-account (operating-system-users os))))
|
|
|
|
|
|
2014-05-09 16:58:46 -04:00
|
|
|
|
(mlet %store-monad ((services (operating-system-services os)))
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(return (append users
|
|
|
|
|
(append-map service-user-accounts services)))))
|
2014-04-23 09:47:42 -04:00
|
|
|
|
|
|
|
|
|
(define (operating-system-etc-directory os)
|
|
|
|
|
"Return that static part of the /etc directory of OS."
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(mlet* %store-monad
|
2014-05-09 16:58:46 -04:00
|
|
|
|
((services (operating-system-services os))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(pam-services ->
|
|
|
|
|
;; Services known to PAM.
|
|
|
|
|
(delete-duplicates
|
2014-04-30 16:17:56 -04:00
|
|
|
|
(append (operating-system-pam-services os)
|
|
|
|
|
(append-map service-pam-services services))))
|
2014-05-12 17:37:13 -04:00
|
|
|
|
(profile-drv (operating-system-profile os))
|
|
|
|
|
(skeletons (operating-system-skeletons os)))
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(etc-directory #:pam-services pam-services
|
2014-05-12 17:37:13 -04:00
|
|
|
|
#:skeletons skeletons
|
2014-05-31 16:01:05 -04:00
|
|
|
|
#:issue (operating-system-issue os)
|
2014-04-23 09:47:42 -04:00
|
|
|
|
#:locale (operating-system-locale os)
|
|
|
|
|
#:timezone (operating-system-timezone os)
|
2014-05-01 09:29:24 -04:00
|
|
|
|
#:sudoers (operating-system-sudoers os)
|
2014-04-23 09:47:42 -04:00
|
|
|
|
#:profile profile-drv)))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-30 16:17:56 -04:00
|
|
|
|
(define %setuid-programs
|
|
|
|
|
;; Default set of setuid-root programs.
|
|
|
|
|
(let ((shadow (@ (gnu packages admin) shadow)))
|
|
|
|
|
(list #~(string-append #$shadow "/bin/passwd")
|
|
|
|
|
#~(string-append #$shadow "/bin/su")
|
2014-05-01 09:29:24 -04:00
|
|
|
|
#~(string-append #$inetutils "/bin/ping")
|
2014-05-29 17:13:11 -04:00
|
|
|
|
#~(string-append #$sudo "/bin/sudo")
|
|
|
|
|
#~(string-append #$fuse "/bin/fusermount"))))
|
2014-05-01 09:29:24 -04:00
|
|
|
|
|
|
|
|
|
(define %sudoers-specification
|
|
|
|
|
;; Default /etc/sudoers contents: 'root' and all members of the 'wheel'
|
|
|
|
|
;; group can do anything. See
|
|
|
|
|
;; <http://www.sudo.ws/sudo/man/1.8.10/sudoers.man.html>.
|
|
|
|
|
;; TODO: Add a declarative API.
|
|
|
|
|
"root ALL=(ALL) ALL
|
|
|
|
|
%wheel ALL=(ALL) ALL\n")
|
2014-04-30 16:17:56 -04:00
|
|
|
|
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(define (user-group->gexp group)
|
|
|
|
|
"Turn GROUP, a <user-group> object, into a list-valued gexp suitable for
|
|
|
|
|
'active-groups'."
|
|
|
|
|
#~(list #$(user-group-name group)
|
|
|
|
|
#$(user-group-password group)
|
|
|
|
|
#$(user-group-id group)))
|
|
|
|
|
|
|
|
|
|
(define (user-account->gexp account)
|
|
|
|
|
"Turn ACCOUNT, a <user-account> object, into a list-valued gexp suitable for
|
|
|
|
|
'activate-users'."
|
|
|
|
|
#~`(#$(user-account-name account)
|
|
|
|
|
#$(user-account-uid account)
|
|
|
|
|
#$(user-account-group account)
|
|
|
|
|
#$(user-account-supplementary-groups account)
|
|
|
|
|
#$(user-account-comment account)
|
|
|
|
|
#$(user-account-home-directory account)
|
|
|
|
|
,#$(user-account-shell account) ; this one is a gexp
|
|
|
|
|
#$(user-account-password account)))
|
|
|
|
|
|
2014-05-24 09:51:57 -04:00
|
|
|
|
(define (operating-system-activation-script os)
|
|
|
|
|
"Return the activation script for OS---i.e., the code that \"activates\" the
|
|
|
|
|
stateful part of OS, including user accounts and groups, special directories,
|
|
|
|
|
etc."
|
2014-04-30 16:17:56 -04:00
|
|
|
|
(define %modules
|
|
|
|
|
'((guix build activation)
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(guix build utils)
|
|
|
|
|
(guix build linux-initrd)))
|
2014-04-30 16:17:56 -04:00
|
|
|
|
|
2014-05-24 12:03:27 -04:00
|
|
|
|
(define (service-activations services)
|
|
|
|
|
;; Return the activation scripts for SERVICES.
|
|
|
|
|
(let ((gexps (filter-map service-activate services)))
|
|
|
|
|
(sequence %store-monad (map (cut gexp->file "activate-service.scm" <>)
|
|
|
|
|
gexps))))
|
|
|
|
|
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(mlet* %store-monad ((services (operating-system-services os))
|
2014-05-24 12:03:27 -04:00
|
|
|
|
(actions (service-activations services))
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(etc (operating-system-etc-directory os))
|
|
|
|
|
(modules (imported-modules %modules))
|
|
|
|
|
(compiled (compiled-modules %modules))
|
|
|
|
|
(accounts (operating-system-accounts os)))
|
2014-04-30 16:17:56 -04:00
|
|
|
|
(define setuid-progs
|
|
|
|
|
(operating-system-setuid-programs os))
|
|
|
|
|
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
(define user-specs
|
|
|
|
|
(map user-account->gexp accounts))
|
|
|
|
|
|
|
|
|
|
(define groups
|
|
|
|
|
(append (operating-system-groups os)
|
|
|
|
|
(append-map service-user-groups services)))
|
|
|
|
|
|
|
|
|
|
(define group-specs
|
|
|
|
|
(map user-group->gexp groups))
|
|
|
|
|
|
2014-04-26 10:36:48 -04:00
|
|
|
|
(gexp->file "boot"
|
2014-04-30 09:44:59 -04:00
|
|
|
|
#~(begin
|
|
|
|
|
(eval-when (expand load eval)
|
|
|
|
|
;; Make sure 'use-modules' below succeeds.
|
|
|
|
|
(set! %load-path (cons #$modules %load-path))
|
|
|
|
|
(set! %load-compiled-path
|
|
|
|
|
(cons #$compiled %load-compiled-path)))
|
|
|
|
|
|
|
|
|
|
(use-modules (guix build activation))
|
|
|
|
|
|
|
|
|
|
;; Populate /etc.
|
|
|
|
|
(activate-etc #$etc)
|
|
|
|
|
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 16:41:01 -04:00
|
|
|
|
;; Add users and user groups.
|
|
|
|
|
(setenv "PATH"
|
|
|
|
|
(string-append #$(@ (gnu packages admin) shadow)
|
|
|
|
|
"/sbin"))
|
|
|
|
|
(activate-users+groups (list #$@user-specs)
|
|
|
|
|
(list #$@group-specs))
|
|
|
|
|
|
2014-04-30 16:17:56 -04:00
|
|
|
|
;; Activate setuid programs.
|
|
|
|
|
(activate-setuid-programs (list #$@setuid-progs))
|
|
|
|
|
|
2014-05-24 12:03:27 -04:00
|
|
|
|
;; Run the services' activation snippets.
|
|
|
|
|
;; TODO: Use 'load-compiled'.
|
|
|
|
|
(for-each primitive-load '#$actions)
|
|
|
|
|
|
2014-05-17 11:39:30 -04:00
|
|
|
|
;; Set up /run/current-system.
|
2014-05-24 09:51:57 -04:00
|
|
|
|
(activate-current-system)))))
|
|
|
|
|
|
|
|
|
|
(define (operating-system-boot-script os)
|
|
|
|
|
"Return the boot script for OS---i.e., the code started by the initrd once
|
|
|
|
|
we're running in the final root."
|
|
|
|
|
(mlet* %store-monad ((services (operating-system-services os))
|
|
|
|
|
(activate (operating-system-activation-script os))
|
|
|
|
|
(dmd-conf (dmd-configuration-file services)))
|
|
|
|
|
(gexp->file "boot"
|
|
|
|
|
#~(begin
|
|
|
|
|
;; Activate the system.
|
|
|
|
|
;; TODO: Use 'load-compiled'.
|
|
|
|
|
(primitive-load #$activate)
|
|
|
|
|
|
|
|
|
|
;; Keep track of the booted system.
|
|
|
|
|
(false-if-exception (delete-file "/run/booted-system"))
|
|
|
|
|
(symlink (readlink "/run/current-system")
|
|
|
|
|
"/run/booted-system")
|
2014-05-17 11:39:30 -04:00
|
|
|
|
|
2014-05-06 12:09:25 -04:00
|
|
|
|
;; Close any remaining open file descriptors to be on the
|
|
|
|
|
;; safe side. This must be the very last thing we do,
|
|
|
|
|
;; because Guile has internal FDs such as 'sleep_pipe'
|
|
|
|
|
;; that need to be alive.
|
|
|
|
|
(let loop ((fd 3))
|
|
|
|
|
(when (< fd 1024)
|
|
|
|
|
(false-if-exception (close-fdes fd))
|
|
|
|
|
(loop (+ 1 fd))))
|
|
|
|
|
|
2014-04-30 09:44:59 -04:00
|
|
|
|
;; Start dmd.
|
|
|
|
|
(execl (string-append #$dmd "/bin/dmd")
|
|
|
|
|
"dmd" "--config" #$dmd-conf)))))
|
2014-04-23 10:52:14 -04:00
|
|
|
|
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(define (operating-system-root-file-system os)
|
|
|
|
|
"Return the root file system of OS."
|
|
|
|
|
(find (match-lambda
|
2014-06-02 17:58:50 -04:00
|
|
|
|
(($ <file-system> _ _ "/") #t)
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(_ #f))
|
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(define (operating-system-initrd-file os)
|
|
|
|
|
"Return a gexp denoting the initrd file of OS."
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(define boot-file-systems
|
|
|
|
|
(filter (match-lambda
|
2014-06-02 17:58:50 -04:00
|
|
|
|
(($ <file-system> device title "/")
|
2014-05-03 18:30:39 -04:00
|
|
|
|
#t)
|
2014-06-02 17:58:50 -04:00
|
|
|
|
(($ <file-system> device title mount-point type flags
|
|
|
|
|
options boot?)
|
2014-05-03 18:30:39 -04:00
|
|
|
|
boot?))
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(mlet %store-monad
|
|
|
|
|
((initrd ((operating-system-initrd os) boot-file-systems)))
|
|
|
|
|
(return #~(string-append #$initrd "/initrd"))))
|
|
|
|
|
|
|
|
|
|
(define (operating-system-grub.cfg os)
|
|
|
|
|
"Return the GRUB configuration file for OS."
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(mlet* %store-monad
|
2014-05-17 11:39:30 -04:00
|
|
|
|
((system (operating-system-derivation os))
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(root-fs -> (operating-system-root-file-system os))
|
2014-05-17 11:39:30 -04:00
|
|
|
|
(kernel -> (operating-system-kernel os))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(entries -> (list (menu-entry
|
|
|
|
|
(label (string-append
|
|
|
|
|
"GNU system with "
|
|
|
|
|
(package-full-name kernel)
|
|
|
|
|
" (technology preview)"))
|
|
|
|
|
(linux kernel)
|
2014-04-28 17:40:24 -04:00
|
|
|
|
(linux-arguments
|
2014-05-02 18:26:07 -04:00
|
|
|
|
(list (string-append "--root="
|
|
|
|
|
(file-system-device root-fs))
|
2014-05-17 11:39:30 -04:00
|
|
|
|
#~(string-append "--system=" #$system)
|
|
|
|
|
#~(string-append "--load=" #$system
|
|
|
|
|
"/boot")))
|
|
|
|
|
(initrd #~(string-append #$system "/initrd"))))))
|
2014-05-18 15:58:01 -04:00
|
|
|
|
(grub-configuration-file (operating-system-bootloader os) entries)))
|
2014-05-17 11:39:30 -04:00
|
|
|
|
|
|
|
|
|
(define (operating-system-derivation os)
|
|
|
|
|
"Return a derivation that builds OS."
|
|
|
|
|
(mlet* %store-monad
|
|
|
|
|
((profile (operating-system-profile os))
|
|
|
|
|
(etc (operating-system-etc-directory os))
|
|
|
|
|
(boot (operating-system-boot-script os))
|
|
|
|
|
(kernel -> (operating-system-kernel os))
|
|
|
|
|
(initrd (operating-system-initrd-file os)))
|
2014-04-27 10:50:34 -04:00
|
|
|
|
(file-union "system"
|
2014-04-28 17:40:24 -04:00
|
|
|
|
`(("boot" ,#~#$boot)
|
2014-04-27 10:50:34 -04:00
|
|
|
|
("kernel" ,#~#$kernel)
|
2014-05-17 11:39:30 -04:00
|
|
|
|
("initrd" ,initrd)
|
2014-04-27 10:50:34 -04:00
|
|
|
|
("profile" ,#~#$profile)
|
|
|
|
|
("etc" ,#~#$etc)))))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
;;; system.scm ends here
|