2013-12-09 20:32:36 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2015-01-13 10:42:52 +00:00
|
|
|
|
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2015-02-25 04:54:29 +00:00
|
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2015-06-15 10:18:20 +00:00
|
|
|
|
;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
|
2013-12-09 20:32:36 +00: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 14:36:48 +00:00
|
|
|
|
#:use-module (guix gexp)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:use-module (guix records)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix derivations)
|
2014-08-11 20:18:33 +00:00
|
|
|
|
#:use-module (guix profiles)
|
2015-06-05 18:22:47 +00:00
|
|
|
|
#:use-module (guix ui)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
|
#:use-module (gnu packages bash)
|
gnu: Split (gnu packages base), adding (gnu packages commencement).
* gnu/packages/base.scm (gnu-make-boot0, diffutils-boot0,
findutils-boot0, %boot0-inputs, nix-system->gnu-triplet, boot-triplet,
binutils-boot0, gcc-boot0, perl-boot0, linux-libre-headers-boot0,
texinfo-boot0, %boot1-inputs, glibc-final-with-bootstrap-bash,
cross-gcc-wrapper, static-bash-for-glibc, glibc-final,
gcc-boot0-wrapped, %boot2-inputs, binutils-final, libstdc++,
gcc-final, ld-wrapper-boot3, %boot3-inputs, bash-final, %boot4-inputs,
guile-final, gnu-make-final, ld-wrapper, coreutils-final, grep-final,
%boot5-inputs, %final-inputs, canonical-package, gcc-toolchain,
gcc-toolchain-4.8, gcc-toolchain-4.9): Move to...
* gnu/packages/commencement.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/check-final-inputs-self-contained.scm: Adjust accordingly.
* gnu/packages/cross-base.scm: Likewise.
* gnu/packages/make-bootstrap.scm: Likewise.
* guix/build-system/cmake.scm (cmake-build): Likewise.
* guix/build-system/gnu.scm (standard-packages, gnu-build,
gnu-cross-build): Likewise.
* guix/build-system/perl.scm (perl-build): Likewise.
* guix/build-system/python.scm (python-build): Likewise.
* guix/build-system/trivial.scm (guile-for-build): Likewise.
* guix/download.scm (url-fetch): Likewise.
* guix/gexp.scm (default-guile): Likewise.
* guix/git-download.scm (git-fetch): Likewise.
* guix/monads.scm (run-with-store): Likewise.
* guix/packages.scm (default-guile): Likewise.
* guix/scripts/package.scm (guix-package): Likewise.
* guix/scripts/refresh.scm: Likewise.
* guix/svn-download.scm (svn-fetch): Likewise.
* tests/builders.scm (%bootstrap-inputs, %bootstrap-search-paths):
Likewise.
* tests/packages.scm ("GNU Make, bootstrap"): Likewise.
* tests/guix-package.sh: Likewise.
* gnu/services/base.scm: Use 'canonical-package' instead of xxx-final.
* gnu/services/xorg.scm: Likewise.
* gnu/system/vm.scm: Likewise.
* guix/scripts/pull.scm (guix-pull): Likewise.
2014-08-26 22:25:17 +00:00
|
|
|
|
#:use-module (gnu packages guile)
|
2014-01-13 22:21:47 +00:00
|
|
|
|
#:use-module (gnu packages admin)
|
2014-05-29 21:13:11 +00:00
|
|
|
|
#:use-module (gnu packages linux)
|
2014-10-28 22:40:32 +00:00
|
|
|
|
#:use-module (gnu packages pciutils)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:use-module (gnu packages package-management)
|
2014-06-04 12:59:24 +00:00
|
|
|
|
#:use-module (gnu packages less)
|
|
|
|
|
#:use-module (gnu packages zile)
|
2014-07-14 13:35:57 +00:00
|
|
|
|
#:use-module (gnu packages nano)
|
|
|
|
|
#:use-module (gnu packages lsof)
|
2014-09-12 20:13:23 +00:00
|
|
|
|
#:use-module (gnu packages gawk)
|
2014-12-07 21:59:46 +00:00
|
|
|
|
#:use-module (gnu packages man)
|
2014-09-12 20:13:23 +00:00
|
|
|
|
#:use-module (gnu packages compression)
|
2014-11-11 21:42:15 +00:00
|
|
|
|
#:use-module (gnu packages firmware)
|
2014-09-12 20:13:23 +00:00
|
|
|
|
#:autoload (gnu packages cryptsetup) (cryptsetup)
|
2014-02-19 19:58:24 +00:00
|
|
|
|
#:use-module (gnu services)
|
|
|
|
|
#:use-module (gnu services dmd)
|
|
|
|
|
#:use-module (gnu services base)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:use-module (gnu system grub)
|
|
|
|
|
#:use-module (gnu system shadow)
|
2015-02-04 20:58:15 +00:00
|
|
|
|
#:use-module (gnu system nss)
|
2014-11-26 21:49:11 +00:00
|
|
|
|
#:use-module (gnu system locale)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:use-module (gnu system linux)
|
2014-01-29 12:04:00 +00:00
|
|
|
|
#:use-module (gnu system linux-initrd)
|
2014-05-20 19:59:08 +00:00
|
|
|
|
#:use-module (gnu system file-systems)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:use-module (ice-9 match)
|
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-26)
|
2014-11-26 21:49:11 +00:00
|
|
|
|
#:use-module (srfi srfi-34)
|
|
|
|
|
#:use-module (srfi srfi-35)
|
2013-12-09 20:32:36 +00:00
|
|
|
|
#:export (operating-system
|
|
|
|
|
operating-system?
|
2014-05-18 19:58:01 +00:00
|
|
|
|
|
|
|
|
|
operating-system-bootloader
|
2013-12-09 20:32:36 +00:00
|
|
|
|
operating-system-services
|
2014-05-09 20:58:46 +00:00
|
|
|
|
operating-system-user-services
|
2013-12-09 20:32:36 +00:00
|
|
|
|
operating-system-packages
|
2014-01-31 13:36:48 +00:00
|
|
|
|
operating-system-host-name
|
2014-09-11 20:03:24 +00:00
|
|
|
|
operating-system-hosts-file
|
2014-01-31 13:36:48 +00:00
|
|
|
|
operating-system-kernel
|
2015-07-16 23:07:50 +00:00
|
|
|
|
operating-system-kernel-arguments
|
2014-01-31 13:36:48 +00:00
|
|
|
|
operating-system-initrd
|
|
|
|
|
operating-system-users
|
|
|
|
|
operating-system-groups
|
2014-05-31 20:01:05 +00:00
|
|
|
|
operating-system-issue
|
2014-01-31 13:36:48 +00:00
|
|
|
|
operating-system-timezone
|
|
|
|
|
operating-system-locale
|
2014-11-26 21:49:11 +00:00
|
|
|
|
operating-system-locale-definitions
|
2014-09-11 21:39:15 +00:00
|
|
|
|
operating-system-mapped-devices
|
2014-05-02 22:26:07 +00:00
|
|
|
|
operating-system-file-systems
|
2014-06-26 22:06:46 +00:00
|
|
|
|
operating-system-activation-script
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-04-27 12:58:15 +00:00
|
|
|
|
operating-system-derivation
|
2014-05-02 22:26:07 +00:00
|
|
|
|
operating-system-profile
|
2014-06-04 12:59:24 +00:00
|
|
|
|
operating-system-grub.cfg
|
2015-06-08 12:59:00 +00:00
|
|
|
|
operating-system-etc-directory
|
|
|
|
|
operating-system-locale-directory
|
|
|
|
|
operating-system-boot-script
|
|
|
|
|
|
|
|
|
|
file-union
|
2014-06-04 12:59:24 +00:00
|
|
|
|
|
2014-10-07 19:17:22 +00:00
|
|
|
|
local-host-aliases
|
2014-09-09 15:12:33 +00:00
|
|
|
|
%setuid-programs
|
2014-09-11 21:39:15 +00:00
|
|
|
|
%base-packages
|
2014-11-11 21:42:15 +00:00
|
|
|
|
%base-firmware
|
2014-09-11 21:39:15 +00:00
|
|
|
|
|
|
|
|
|
luks-device-mapping))
|
2013-12-09 20:32:36 +00: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
|
2015-08-04 14:38:06 +00:00
|
|
|
|
(default linux-libre))
|
2015-07-16 23:07:50 +00:00
|
|
|
|
(kernel-arguments operating-system-kernel-arguments
|
|
|
|
|
(default '())) ; list of gexps/strings
|
2014-05-18 19:58:01 +00:00
|
|
|
|
(bootloader operating-system-bootloader) ; <grub-configuration>
|
|
|
|
|
|
2014-05-02 22:26:07 +00:00
|
|
|
|
(initrd operating-system-initrd ; (list fs) -> M derivation
|
2014-06-30 18:56:45 +00:00
|
|
|
|
(default base-initrd))
|
2014-11-11 21:42:15 +00:00
|
|
|
|
(firmware operating-system-firmware ; list of packages
|
|
|
|
|
(default %base-firmware))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
|
|
|
|
(host-name operating-system-host-name) ; string
|
2015-06-05 20:41:55 +00:00
|
|
|
|
(hosts-file operating-system-hosts-file ; file-like | #f
|
2014-09-11 20:03:24 +00:00
|
|
|
|
(default #f))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-09-11 21:39:15 +00:00
|
|
|
|
(mapped-devices operating-system-mapped-devices ; list of <mapped-device>
|
|
|
|
|
(default '()))
|
2014-06-26 22:11:38 +00:00
|
|
|
|
(file-systems operating-system-file-systems) ; list of fs
|
2014-09-18 20:51:48 +00:00
|
|
|
|
(swap-devices operating-system-swap-devices ; list of strings
|
|
|
|
|
(default '()))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
|
|
|
|
(users operating-system-users ; list of user accounts
|
2015-05-25 14:54:05 +00:00
|
|
|
|
(default %base-user-accounts))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(groups operating-system-groups ; list of user groups
|
2014-06-22 20:16:14 +00:00
|
|
|
|
(default %base-groups))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-05-12 21:37:13 +00:00
|
|
|
|
(skeletons operating-system-skeletons ; list of name/monadic value
|
|
|
|
|
(default (default-skeletons)))
|
2014-05-31 20:01:05 +00:00
|
|
|
|
(issue operating-system-issue ; string
|
|
|
|
|
(default %default-issue))
|
2014-05-12 21:37:13 +00:00
|
|
|
|
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(packages operating-system-packages ; list of (PACKAGE OUTPUT...)
|
2014-06-04 12:59:24 +00:00
|
|
|
|
(default %base-packages)) ; or just PACKAGE
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
|
|
|
|
(timezone operating-system-timezone) ; string
|
2014-06-26 22:11:38 +00:00
|
|
|
|
(locale operating-system-locale ; string
|
2014-11-26 21:49:11 +00:00
|
|
|
|
(default "en_US.utf8"))
|
|
|
|
|
(locale-definitions operating-system-locale-definitions ; list of <locale-definition>
|
|
|
|
|
(default %default-locale-definitions))
|
2015-02-04 20:58:15 +00:00
|
|
|
|
(name-service-switch operating-system-name-service-switch ; <name-service-switch>
|
|
|
|
|
(default %default-nss))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-05-09 20:58:46 +00:00
|
|
|
|
(services operating-system-user-services ; list of monadic services
|
2014-04-30 20:17:56 +00: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 13:29:24 +00:00
|
|
|
|
(default %setuid-programs)) ; list of string-valued gexps
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2015-06-15 10:18:20 +00:00
|
|
|
|
(sudoers-file operating-system-sudoers-file ; file-like
|
|
|
|
|
(default %sudoers-specification)))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Derivation.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-04-27 14:50:34 +00:00
|
|
|
|
(define* (file-union name files)
|
2013-12-09 20:32:36 +00: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 14:50:34 +00: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 20:32:36 +00:00
|
|
|
|
|
2014-04-27 14:50:34 +00:00
|
|
|
|
(gexp->derivation name builder))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-11-11 21:42:15 +00:00
|
|
|
|
(define (directory-union name things)
|
|
|
|
|
"Return a directory that is the union of THINGS."
|
|
|
|
|
(match things
|
|
|
|
|
((one)
|
|
|
|
|
;; Only one thing; return it.
|
|
|
|
|
(with-monad %store-monad (return one)))
|
|
|
|
|
(_
|
|
|
|
|
(gexp->derivation name
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build union))
|
|
|
|
|
(union-build #$output '#$things))
|
|
|
|
|
#:modules '((guix build union))
|
|
|
|
|
#:local-build? #t))))
|
|
|
|
|
|
2014-05-12 21:37:13 +00:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; Services.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-09-18 17:18:39 +00:00
|
|
|
|
(define (open-luks-device source target)
|
2014-09-11 21:39:15 +00:00
|
|
|
|
"Return a gexp that maps SOURCE to TARGET as a LUKS device, using
|
|
|
|
|
'cryptsetup'."
|
|
|
|
|
#~(zero? (system* (string-append #$cryptsetup "/sbin/cryptsetup")
|
|
|
|
|
"open" "--type" "luks"
|
|
|
|
|
#$source #$target)))
|
|
|
|
|
|
2014-09-18 17:18:39 +00:00
|
|
|
|
(define (close-luks-device source target)
|
|
|
|
|
"Return a gexp that closes TARGET, a LUKS device."
|
|
|
|
|
#~(zero? (system* (string-append #$cryptsetup "/sbin/cryptsetup")
|
|
|
|
|
"close" #$target)))
|
|
|
|
|
|
|
|
|
|
(define luks-device-mapping
|
|
|
|
|
;; The type of LUKS mapped devices.
|
|
|
|
|
(mapped-device-kind
|
|
|
|
|
(open open-luks-device)
|
|
|
|
|
(close close-luks-device)))
|
|
|
|
|
|
2014-05-10 21:33:52 +00: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
|
2014-11-25 15:01:21 +00:00
|
|
|
|
(remove file-system-needed-for-boot?
|
2014-05-10 21:33:52 +00:00
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
2014-09-11 21:39:15 +00:00
|
|
|
|
(define (device-mappings fs)
|
|
|
|
|
(filter (lambda (md)
|
|
|
|
|
(string=? (string-append "/dev/mapper/"
|
|
|
|
|
(mapped-device-target md))
|
|
|
|
|
(file-system-device fs)))
|
|
|
|
|
(operating-system-mapped-devices os)))
|
|
|
|
|
|
|
|
|
|
(define (requirements fs)
|
2015-07-17 17:24:15 +00:00
|
|
|
|
;; XXX: Fiddling with dmd service names is not nice.
|
|
|
|
|
(append (map (lambda (fs)
|
|
|
|
|
(symbol-append 'file-system-
|
|
|
|
|
(string->symbol
|
|
|
|
|
(file-system-mount-point fs))))
|
|
|
|
|
(file-system-dependencies fs))
|
|
|
|
|
(map (lambda (md)
|
|
|
|
|
(symbol-append 'device-mapping-
|
|
|
|
|
(string->symbol (mapped-device-target md))))
|
|
|
|
|
(device-mappings fs))))
|
2014-09-11 21:39:15 +00:00
|
|
|
|
|
2014-05-10 21:33:52 +00:00
|
|
|
|
(sequence %store-monad
|
2014-09-11 21:39:15 +00:00
|
|
|
|
(map (lambda (fs)
|
|
|
|
|
(match fs
|
|
|
|
|
(($ <file-system> device title target type flags opts
|
|
|
|
|
#f check? create?)
|
|
|
|
|
(file-system-service device target type
|
|
|
|
|
#:title title
|
|
|
|
|
#:requirements (requirements fs)
|
|
|
|
|
#:check? check?
|
|
|
|
|
#:create-mount-point? create?
|
|
|
|
|
#:options opts
|
|
|
|
|
#:flags flags))))
|
2014-05-10 21:33:52 +00:00
|
|
|
|
file-systems)))
|
|
|
|
|
|
2014-09-22 09:06:42 +00:00
|
|
|
|
(define (mapped-device-user device file-systems)
|
|
|
|
|
"Return a file system among FILE-SYSTEMS that uses DEVICE, or #f."
|
|
|
|
|
(let ((target (string-append "/dev/mapper/" (mapped-device-target device))))
|
|
|
|
|
(find (lambda (fs)
|
|
|
|
|
(string=? (file-system-device fs) target))
|
|
|
|
|
file-systems)))
|
|
|
|
|
|
|
|
|
|
(define (operating-system-user-mapped-devices os)
|
|
|
|
|
"Return the subset of mapped devices that can be installed in
|
|
|
|
|
user-land--i.e., those not needed during boot."
|
2014-11-30 16:50:07 +00:00
|
|
|
|
(let ((devices (operating-system-mapped-devices os))
|
|
|
|
|
(file-systems (operating-system-file-systems os)))
|
|
|
|
|
(filter (lambda (md)
|
|
|
|
|
(let ((user (mapped-device-user md file-systems)))
|
|
|
|
|
(or (not user)
|
|
|
|
|
(not (file-system-needed-for-boot? user)))))
|
|
|
|
|
devices)))
|
2014-09-22 09:06:42 +00:00
|
|
|
|
|
|
|
|
|
(define (operating-system-boot-mapped-devices os)
|
|
|
|
|
"Return the subset of mapped devices that must be installed during boot,
|
|
|
|
|
from the initrd."
|
2014-11-30 16:50:07 +00:00
|
|
|
|
(let ((devices (operating-system-mapped-devices os))
|
|
|
|
|
(file-systems (operating-system-file-systems os)))
|
|
|
|
|
(filter (lambda (md)
|
|
|
|
|
(let ((user (mapped-device-user md file-systems)))
|
|
|
|
|
(and user (file-system-needed-for-boot? user))))
|
|
|
|
|
devices)))
|
2014-09-22 09:06:42 +00:00
|
|
|
|
|
2014-09-11 21:39:15 +00:00
|
|
|
|
(define (device-mapping-services os)
|
|
|
|
|
"Return the list of device-mapping services for OS as a monadic list."
|
|
|
|
|
(sequence %store-monad
|
|
|
|
|
(map (lambda (md)
|
2014-09-18 17:18:39 +00:00
|
|
|
|
(let* ((source (mapped-device-source md))
|
|
|
|
|
(target (mapped-device-target md))
|
|
|
|
|
(type (mapped-device-type md))
|
|
|
|
|
(open (mapped-device-kind-open type))
|
|
|
|
|
(close (mapped-device-kind-close type)))
|
2014-09-11 21:39:15 +00:00
|
|
|
|
(device-mapping-service target
|
2014-09-18 17:18:39 +00:00
|
|
|
|
(open source target)
|
|
|
|
|
(close source target))))
|
2014-09-22 09:06:42 +00:00
|
|
|
|
(operating-system-user-mapped-devices os))))
|
2014-09-11 21:39:15 +00:00
|
|
|
|
|
2014-09-18 20:51:48 +00:00
|
|
|
|
(define (swap-services os)
|
|
|
|
|
"Return the list of swap services for OS as a monadic list."
|
|
|
|
|
(sequence %store-monad
|
|
|
|
|
(map swap-service (operating-system-swap-devices os))))
|
|
|
|
|
|
2014-05-09 20:58:46 +00: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-11-10 21:25:39 +00:00
|
|
|
|
(define known-fs
|
|
|
|
|
(map file-system-mount-point (operating-system-file-systems os)))
|
|
|
|
|
|
2014-09-11 21:39:15 +00:00
|
|
|
|
(mlet* %store-monad ((mappings (device-mapping-services os))
|
|
|
|
|
(root-fs (root-file-system-service))
|
2014-05-10 21:33:52 +00:00
|
|
|
|
(other-fs (other-file-system-services os))
|
2014-11-10 21:25:39 +00:00
|
|
|
|
(unmount (user-unmount-service known-fs))
|
2014-09-18 20:51:48 +00:00
|
|
|
|
(swaps (swap-services os))
|
2014-05-10 21:33:52 +00:00
|
|
|
|
(procs (user-processes-service
|
|
|
|
|
(map (compose first service-provision)
|
|
|
|
|
other-fs)))
|
|
|
|
|
(host-name (host-name-service
|
|
|
|
|
(operating-system-host-name os))))
|
2014-11-10 21:25:39 +00:00
|
|
|
|
(return (cons* host-name procs root-fs unmount
|
2014-09-18 20:51:48 +00:00
|
|
|
|
(append other-fs mappings swaps)))))
|
2014-05-09 20:58:46 +00: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 21:37:13 +00:00
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
|
;;; /etc.
|
|
|
|
|
;;;
|
|
|
|
|
|
2014-11-11 21:42:15 +00:00
|
|
|
|
(define %base-firmware
|
|
|
|
|
;; Firmware usable by default.
|
|
|
|
|
(list ath9k-htc-firmware))
|
|
|
|
|
|
2014-06-04 12:59:24 +00:00
|
|
|
|
(define %base-packages
|
|
|
|
|
;; Default set of packages globally visible. It should include anything
|
|
|
|
|
;; required for basic administrator tasks.
|
2014-07-14 13:35:57 +00:00
|
|
|
|
(cons* procps psmisc which less zile nano
|
gnu: Split (gnu packages base), adding (gnu packages commencement).
* gnu/packages/base.scm (gnu-make-boot0, diffutils-boot0,
findutils-boot0, %boot0-inputs, nix-system->gnu-triplet, boot-triplet,
binutils-boot0, gcc-boot0, perl-boot0, linux-libre-headers-boot0,
texinfo-boot0, %boot1-inputs, glibc-final-with-bootstrap-bash,
cross-gcc-wrapper, static-bash-for-glibc, glibc-final,
gcc-boot0-wrapped, %boot2-inputs, binutils-final, libstdc++,
gcc-final, ld-wrapper-boot3, %boot3-inputs, bash-final, %boot4-inputs,
guile-final, gnu-make-final, ld-wrapper, coreutils-final, grep-final,
%boot5-inputs, %final-inputs, canonical-package, gcc-toolchain,
gcc-toolchain-4.8, gcc-toolchain-4.9): Move to...
* gnu/packages/commencement.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/check-final-inputs-self-contained.scm: Adjust accordingly.
* gnu/packages/cross-base.scm: Likewise.
* gnu/packages/make-bootstrap.scm: Likewise.
* guix/build-system/cmake.scm (cmake-build): Likewise.
* guix/build-system/gnu.scm (standard-packages, gnu-build,
gnu-cross-build): Likewise.
* guix/build-system/perl.scm (perl-build): Likewise.
* guix/build-system/python.scm (python-build): Likewise.
* guix/build-system/trivial.scm (guile-for-build): Likewise.
* guix/download.scm (url-fetch): Likewise.
* guix/gexp.scm (default-guile): Likewise.
* guix/git-download.scm (git-fetch): Likewise.
* guix/monads.scm (run-with-store): Likewise.
* guix/packages.scm (default-guile): Likewise.
* guix/scripts/package.scm (guix-package): Likewise.
* guix/scripts/refresh.scm: Likewise.
* guix/svn-download.scm (svn-fetch): Likewise.
* tests/builders.scm (%bootstrap-inputs, %bootstrap-search-paths):
Likewise.
* tests/packages.scm ("GNU Make, bootstrap"): Likewise.
* tests/guix-package.sh: Likewise.
* gnu/services/base.scm: Use 'canonical-package' instead of xxx-final.
* gnu/services/xorg.scm: Likewise.
* gnu/system/vm.scm: Likewise.
* guix/scripts/pull.scm (guix-pull): Likewise.
2014-08-26 22:25:17 +00:00
|
|
|
|
(@ (gnu packages admin) dmd) guix
|
2014-07-14 13:35:57 +00:00
|
|
|
|
lsof ;for Guix's 'list-runtime-roots'
|
2014-10-28 22:40:32 +00:00
|
|
|
|
pciutils usbutils
|
2015-01-13 10:42:52 +00:00
|
|
|
|
util-linux inetutils isc-dhcp
|
|
|
|
|
|
|
|
|
|
;; wireless-tools is deprecated in favor of iw, but it's still what
|
|
|
|
|
;; many people are familiar with, so keep it around.
|
|
|
|
|
iw wireless-tools
|
|
|
|
|
|
2014-06-18 21:28:54 +00:00
|
|
|
|
net-tools ; XXX: remove when Inetutils suffices
|
2014-12-07 21:59:46 +00:00
|
|
|
|
man-db
|
2014-07-16 13:50:13 +00:00
|
|
|
|
|
2014-12-13 14:39:46 +00:00
|
|
|
|
;; The 'sudo' command is already in %SETUID-PROGRAMS, but we also
|
|
|
|
|
;; want the other commands and the man pages (notably because
|
|
|
|
|
;; auto-completion in Emacs shell relies on man pages.)
|
|
|
|
|
sudo
|
|
|
|
|
|
2014-07-16 13:50:13 +00:00
|
|
|
|
;; Get 'insmod' & co. from kmod, not module-init-tools, since udev
|
|
|
|
|
;; already depends on it anyway.
|
2014-09-13 08:54:47 +00:00
|
|
|
|
kmod eudev
|
2014-07-16 13:50:13 +00:00
|
|
|
|
|
2014-07-16 13:54:15 +00:00
|
|
|
|
e2fsprogs kbd
|
2014-06-18 21:28:54 +00:00
|
|
|
|
|
2015-03-12 21:11:18 +00:00
|
|
|
|
bash-completion
|
|
|
|
|
|
2014-06-18 21:28:54 +00:00
|
|
|
|
;; The packages below are also in %FINAL-INPUTS, so take them from
|
|
|
|
|
;; there to avoid duplication.
|
|
|
|
|
(map canonical-package
|
2014-09-12 20:13:23 +00:00
|
|
|
|
(list guile-2.0 bash coreutils findutils grep sed
|
2014-09-22 21:11:33 +00:00
|
|
|
|
diffutils patch gawk tar gzip bzip2 xz lzip))))
|
2014-06-04 12:59:24 +00:00
|
|
|
|
|
2014-05-31 20:01:05 +00:00
|
|
|
|
(define %default-issue
|
|
|
|
|
;; Default contents for /etc/issue.
|
|
|
|
|
"
|
|
|
|
|
This is the GNU system. Welcome.\n")
|
|
|
|
|
|
2014-10-07 19:17:22 +00:00
|
|
|
|
(define (local-host-aliases host-name)
|
|
|
|
|
"Return aliases for HOST-NAME, to be used in /etc/hosts."
|
|
|
|
|
(string-append "127.0.0.1 localhost " host-name "\n"
|
|
|
|
|
"::1 localhost " host-name "\n"))
|
|
|
|
|
|
2014-09-11 20:03:24 +00:00
|
|
|
|
(define (default-/etc/hosts host-name)
|
|
|
|
|
"Return the default /etc/hosts file."
|
2015-06-05 20:41:55 +00:00
|
|
|
|
(plain-file "hosts" (local-host-aliases host-name)))
|
2014-09-11 20:03:24 +00:00
|
|
|
|
|
2015-01-22 22:42:15 +00:00
|
|
|
|
(define (emacs-site-file)
|
|
|
|
|
"Return the Emacs 'site-start.el' file. That file contains the necessary
|
|
|
|
|
settings for 'guix.el' to work out-of-the-box."
|
|
|
|
|
(gexp->file "site-start.el"
|
|
|
|
|
#~(progn
|
|
|
|
|
;; Add the "normal" elisp directory to the search path;
|
|
|
|
|
;; guix.el may be there.
|
|
|
|
|
(add-to-list
|
|
|
|
|
'load-path
|
|
|
|
|
"/run/current-system/profile/share/emacs/site-lisp")
|
|
|
|
|
|
|
|
|
|
;; Attempt to load guix.el.
|
|
|
|
|
(require 'guix-init nil t)
|
|
|
|
|
|
2015-06-21 13:09:42 +00:00
|
|
|
|
;; Attempt to load geiser.
|
|
|
|
|
(require 'geiser-install nil t))))
|
2015-01-22 22:42:15 +00:00
|
|
|
|
|
|
|
|
|
(define (emacs-site-directory)
|
|
|
|
|
"Return the Emacs site directory, aka. /etc/emacs."
|
|
|
|
|
(mlet %store-monad ((file (emacs-site-file)))
|
|
|
|
|
(gexp->derivation "emacs"
|
|
|
|
|
#~(begin
|
|
|
|
|
(mkdir #$output)
|
|
|
|
|
(chdir #$output)
|
|
|
|
|
(symlink #$file "site-start.el")))))
|
|
|
|
|
|
2015-04-17 11:43:43 +00:00
|
|
|
|
(define (user-shells os)
|
|
|
|
|
"Return the list of all the shells used by the accounts of OS. These may be
|
|
|
|
|
gexps or strings."
|
|
|
|
|
(mlet %store-monad ((accounts (operating-system-accounts os)))
|
|
|
|
|
(return (map user-account-shell accounts))))
|
|
|
|
|
|
|
|
|
|
(define (shells-file shells)
|
|
|
|
|
"Return a derivation that builds a shell list for use as /etc/shells based
|
|
|
|
|
on SHELLS. /etc/shells is used by xterm, polkit, and other programs."
|
|
|
|
|
(gexp->derivation "shells"
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (srfi srfi-1))
|
|
|
|
|
|
|
|
|
|
(define shells
|
|
|
|
|
(delete-duplicates (list #$@shells)))
|
|
|
|
|
|
|
|
|
|
(call-with-output-file #$output
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(display "\
|
|
|
|
|
/bin/sh
|
|
|
|
|
/run/current-system/profile/bin/sh
|
|
|
|
|
/run/current-system/profile/bin/bash\n" port)
|
|
|
|
|
(for-each (lambda (shell)
|
|
|
|
|
(display shell port)
|
|
|
|
|
(newline port))
|
|
|
|
|
shells))))))
|
|
|
|
|
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(define* (etc-directory #:key
|
2013-12-10 20:46:59 +00:00
|
|
|
|
(locale "C") (timezone "Europe/Paris")
|
2014-05-31 20:01:05 +00:00
|
|
|
|
(issue "Hello!\n")
|
2014-05-12 21:37:13 +00:00
|
|
|
|
(skeletons '())
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(pam-services '())
|
2014-05-17 15:39:30 +00:00
|
|
|
|
(profile "/run/current-system/profile")
|
2015-04-17 11:43:43 +00:00
|
|
|
|
hosts-file nss (shells '())
|
2015-06-15 10:18:20 +00:00
|
|
|
|
(sudoers-file (plain-file "sudoers" "")))
|
2013-12-09 20:32:36 +00: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 20:41:01 +00:00
|
|
|
|
((pam.d (pam-services->directory pam-services))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(login.defs (text-file "login.defs" "# Empty for now.\n"))
|
2015-04-17 11:43:43 +00:00
|
|
|
|
(shells (shells-file shells))
|
2015-01-22 22:42:15 +00:00
|
|
|
|
(emacs (emacs-site-directory))
|
2014-05-31 20:01:05 +00:00
|
|
|
|
(issue (text-file "issue" issue))
|
2014-09-12 07:55:25 +00:00
|
|
|
|
(nsswitch (text-file "nsswitch.conf"
|
2015-02-04 20:58:15 +00:00
|
|
|
|
(name-service-switch->string nss)))
|
2014-09-12 07:55:25 +00:00
|
|
|
|
|
2014-12-05 12:01:07 +00:00
|
|
|
|
;; Startup file for POSIX-compliant login shells, which set system-wide
|
|
|
|
|
;; environment variables.
|
|
|
|
|
(profile (text-file* "profile" "\
|
|
|
|
|
export LANG=\"" locale "\"
|
2013-12-10 20:46:59 +00:00
|
|
|
|
export TZ=\"" timezone "\"
|
2014-02-05 21:22:51 +00:00
|
|
|
|
export TZDIR=\"" tzdata "/share/zoneinfo\"
|
2013-12-10 20:46:59 +00:00
|
|
|
|
|
2014-06-04 14:22:48 +00:00
|
|
|
|
# Tell 'modprobe' & co. where to look for modules.
|
2014-06-29 20:02:42 +00:00
|
|
|
|
export LINUX_MODULE_DIRECTORY=/run/booted-system/kernel/lib/modules
|
2014-06-04 14:22:48 +00:00
|
|
|
|
|
2015-05-06 16:23:27 +00:00
|
|
|
|
# These variables are honored by OpenSSL (libssl) and Git.
|
|
|
|
|
export SSL_CERT_DIR=/etc/ssl/certs
|
|
|
|
|
export SSL_CERT_FILE=\"$SSL_CERT_DIR/ca-certificates.crt\"
|
|
|
|
|
export GIT_SSL_CAINFO=\"$SSL_CERT_FILE\"
|
|
|
|
|
|
2015-07-07 18:24:57 +00:00
|
|
|
|
# Crucial variables that could be missing in the profiles' 'etc/profile'
|
2015-05-06 16:23:27 +00:00
|
|
|
|
# because they would require combining both profiles.
|
|
|
|
|
# FIXME: See <http://bugs.gnu.org/20255>.
|
2014-12-12 22:52:27 +00:00
|
|
|
|
export MANPATH=$HOME/.guix-profile/share/man:/run/current-system/profile/share/man
|
2014-11-05 21:56:10 +00:00
|
|
|
|
export INFOPATH=$HOME/.guix-profile/share/info:/run/current-system/profile/share/info
|
2015-01-27 05:37:53 +00:00
|
|
|
|
export XDG_DATA_DIRS=$HOME/.guix-profile/share:/run/current-system/profile/share
|
|
|
|
|
export XDG_CONFIG_DIRS=$HOME/.guix-profile/etc/xdg:/run/current-system/profile/etc/xdg
|
|
|
|
|
|
2015-05-06 16:23:27 +00:00
|
|
|
|
# Ignore the default value of 'PATH'.
|
|
|
|
|
unset PATH
|
|
|
|
|
|
|
|
|
|
# Load the system profile's settings.
|
|
|
|
|
GUIX_PROFILE=/run/current-system/profile \\
|
2015-05-07 07:45:45 +00:00
|
|
|
|
. /run/current-system/profile/etc/profile
|
2015-05-06 16:23:27 +00:00
|
|
|
|
|
|
|
|
|
# Prepend setuid programs.
|
|
|
|
|
export PATH=/run/setuid-programs:$PATH
|
|
|
|
|
|
2015-05-07 07:43:59 +00:00
|
|
|
|
if [ -f \"$HOME/.guix-profile/etc/profile\" ]
|
2015-05-06 16:23:27 +00:00
|
|
|
|
then
|
|
|
|
|
# Load the user profile's settings.
|
|
|
|
|
GUIX_PROFILE=\"$HOME/.guix-profile\" \\
|
2015-05-07 07:45:45 +00:00
|
|
|
|
. \"$HOME/.guix-profile/etc/profile\"
|
2015-05-06 16:23:27 +00:00
|
|
|
|
else
|
|
|
|
|
# At least define this one so that basic things just work
|
|
|
|
|
# when the user installs their first package.
|
|
|
|
|
export PATH=\"$HOME/.guix-profile/bin:$PATH\"
|
|
|
|
|
fi
|
|
|
|
|
|
2015-01-22 22:42:15 +00:00
|
|
|
|
# Append the directory of 'site-start.el' to the search path.
|
|
|
|
|
export EMACSLOADPATH=:/etc/emacs
|
2015-01-22 22:47:13 +00:00
|
|
|
|
|
|
|
|
|
# By default, applications that use D-Bus, such as Emacs, abort at startup
|
|
|
|
|
# when /etc/machine-id is missing. Make sure these warnings are non-fatal.
|
|
|
|
|
export DBUS_FATAL_WARNINGS=0
|
2015-01-28 09:53:50 +00:00
|
|
|
|
|
|
|
|
|
# Allow Aspell to find dictionaries installed in the user profile.
|
|
|
|
|
export ASPELL_CONF=\"dict-dir $HOME/.guix-profile/lib/aspell\"
|
2015-03-12 21:11:18 +00:00
|
|
|
|
|
|
|
|
|
if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ]
|
|
|
|
|
then
|
|
|
|
|
# Load Bash-specific initialization code.
|
2015-05-07 07:45:45 +00:00
|
|
|
|
. /etc/bashrc
|
2015-03-12 21:11:18 +00:00
|
|
|
|
fi
|
2014-05-12 21:37:13 +00:00
|
|
|
|
"))
|
2015-03-12 21:11:18 +00:00
|
|
|
|
|
|
|
|
|
(bashrc (text-file "bashrc" "\
|
|
|
|
|
# Bash-specific initialization.
|
|
|
|
|
|
|
|
|
|
# The 'bash-completion' package.
|
|
|
|
|
if [ -f /run/current-system/profile/etc/profile.d/bash_completion.sh ]
|
|
|
|
|
then
|
|
|
|
|
# Bash-completion sources ~/.bash_completion. It installs a dynamic
|
|
|
|
|
# completion loader that searches its own completion files as well
|
|
|
|
|
# as those in ~/.guix-profile and /run/current-system/profile.
|
|
|
|
|
source /run/current-system/profile/etc/profile.d/bash_completion.sh
|
|
|
|
|
fi\n"))
|
2014-05-12 21:37:13 +00:00
|
|
|
|
(skel (skeleton-directory skeletons)))
|
2014-04-27 14:50:34 +00: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"))
|
2015-01-22 22:42:15 +00:00
|
|
|
|
("emacs" ,#~#$emacs)
|
2014-04-27 14:50:34 +00:00
|
|
|
|
("pam.d" ,#~#$pam.d)
|
|
|
|
|
("login.defs" ,#~#$login.defs)
|
|
|
|
|
("issue" ,#~#$issue)
|
2014-09-12 07:55:25 +00:00
|
|
|
|
("nsswitch.conf" ,#~#$nsswitch)
|
2014-05-12 21:37:13 +00:00
|
|
|
|
("skel" ,#~#$skel)
|
2014-04-27 14:50:34 +00:00
|
|
|
|
("shells" ,#~#$shells)
|
2014-12-05 12:01:07 +00:00
|
|
|
|
("profile" ,#~#$profile)
|
2015-03-12 21:11:18 +00:00
|
|
|
|
("bashrc" ,#~#$bashrc)
|
2014-09-11 20:03:24 +00:00
|
|
|
|
("hosts" ,#~#$hosts-file)
|
2014-04-27 14:50:34 +00:00
|
|
|
|
("localtime" ,#~(string-append #$tzdata "/share/zoneinfo/"
|
|
|
|
|
#$timezone))
|
2015-06-15 10:18:20 +00:00
|
|
|
|
("sudoers" ,sudoers-file)))))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-04-27 12:58:15 +00:00
|
|
|
|
(define (operating-system-profile os)
|
2014-08-11 20:18:33 +00:00
|
|
|
|
"Return a derivation that builds the system profile of OS."
|
|
|
|
|
(profile-derivation (manifest (map package->manifest-entry
|
|
|
|
|
(operating-system-packages os)))))
|
2014-02-02 00:34:33 +00: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 20:41:01 +00: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 13:47:42 +00: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 20:41:01 +00: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 20:58:46 +00: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 20:41:01 +00:00
|
|
|
|
(return (append users
|
|
|
|
|
(append-map service-user-accounts services)))))
|
2014-04-23 13:47:42 +00:00
|
|
|
|
|
2015-06-05 18:22:47 +00:00
|
|
|
|
(define (maybe-string->file file-name thing)
|
|
|
|
|
"If THING is a string, return a <plain-file> with THING as its content.
|
|
|
|
|
Otherwise just return THING.
|
|
|
|
|
|
|
|
|
|
This is for backward-compatibility of fields that used to be strings and are
|
|
|
|
|
now file-like objects.."
|
|
|
|
|
(match thing
|
|
|
|
|
((? string?)
|
|
|
|
|
(warning (_ "using a string for file '~a' is deprecated; \
|
|
|
|
|
use 'plain-file' instead~%")
|
|
|
|
|
file-name)
|
|
|
|
|
(plain-file file-name thing))
|
|
|
|
|
(x
|
|
|
|
|
x)))
|
|
|
|
|
|
2015-06-05 20:41:55 +00:00
|
|
|
|
(define (maybe-file->monadic file-name thing)
|
|
|
|
|
"If THING is a value in %STORE-MONAD, return it as is; otherwise return
|
|
|
|
|
THING in the %STORE-MONAD.
|
|
|
|
|
|
|
|
|
|
This is for backward-compatibility of fields that used to be monadic values
|
|
|
|
|
and are now file-like objects."
|
|
|
|
|
(with-monad %store-monad
|
|
|
|
|
(match thing
|
|
|
|
|
((? procedure?)
|
|
|
|
|
(warning (_ "using a monadic value for '~a' is deprecated; \
|
|
|
|
|
use 'plain-file' instead~%")
|
|
|
|
|
file-name)
|
|
|
|
|
thing)
|
|
|
|
|
(x
|
|
|
|
|
(return x)))))
|
|
|
|
|
|
2014-04-23 13:47:42 +00:00
|
|
|
|
(define (operating-system-etc-directory os)
|
|
|
|
|
"Return that static part of the /etc directory of OS."
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(mlet* %store-monad
|
2014-05-09 20:58:46 +00:00
|
|
|
|
((services (operating-system-services os))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(pam-services ->
|
|
|
|
|
;; Services known to PAM.
|
2015-03-10 17:07:48 +00:00
|
|
|
|
(append (operating-system-pam-services os)
|
|
|
|
|
(append-map service-pam-services services)))
|
2014-05-12 21:37:13 +00:00
|
|
|
|
(profile-drv (operating-system-profile os))
|
2014-09-11 20:03:24 +00:00
|
|
|
|
(skeletons (operating-system-skeletons os))
|
2015-06-05 20:41:55 +00:00
|
|
|
|
(/etc/hosts (maybe-file->monadic
|
|
|
|
|
"hosts"
|
|
|
|
|
(or (operating-system-hosts-file os)
|
|
|
|
|
(default-/etc/hosts (operating-system-host-name os)))))
|
2015-04-17 11:43:43 +00:00
|
|
|
|
(shells (user-shells os)))
|
2014-06-29 20:02:42 +00:00
|
|
|
|
(etc-directory #:pam-services pam-services
|
2014-05-12 21:37:13 +00:00
|
|
|
|
#:skeletons skeletons
|
2014-05-31 20:01:05 +00:00
|
|
|
|
#:issue (operating-system-issue os)
|
2014-04-23 13:47:42 +00:00
|
|
|
|
#:locale (operating-system-locale os)
|
2015-02-04 20:58:15 +00:00
|
|
|
|
#:nss (operating-system-name-service-switch os)
|
2014-04-23 13:47:42 +00:00
|
|
|
|
#:timezone (operating-system-timezone os)
|
2014-09-11 20:03:24 +00:00
|
|
|
|
#:hosts-file /etc/hosts
|
2015-04-17 11:43:43 +00:00
|
|
|
|
#:shells shells
|
2015-06-15 10:18:20 +00:00
|
|
|
|
#:sudoers-file (maybe-string->file
|
|
|
|
|
"sudoers"
|
|
|
|
|
(operating-system-sudoers-file os))
|
2014-04-23 13:47:42 +00:00
|
|
|
|
#:profile profile-drv)))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
2014-04-30 20:17:56 +00:00
|
|
|
|
(define %setuid-programs
|
|
|
|
|
;; Default set of setuid-root programs.
|
2015-08-19 03:56:16 +00:00
|
|
|
|
(let ((shadow (@ (gnu packages admin) shadow)))
|
2014-04-30 20:17:56 +00:00
|
|
|
|
(list #~(string-append #$shadow "/bin/passwd")
|
|
|
|
|
#~(string-append #$shadow "/bin/su")
|
2014-05-01 13:29:24 +00:00
|
|
|
|
#~(string-append #$inetutils "/bin/ping")
|
2015-07-25 14:37:10 +00:00
|
|
|
|
#~(string-append #$inetutils "/bin/ping6")
|
2014-05-29 21:13:11 +00:00
|
|
|
|
#~(string-append #$sudo "/bin/sudo")
|
2015-08-19 03:56:16 +00:00
|
|
|
|
#~(string-append #$fuse "/bin/fusermount"))))
|
2014-05-01 13:29:24 +00: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.
|
2015-06-05 18:22:47 +00:00
|
|
|
|
(plain-file "sudoers" "\
|
|
|
|
|
root ALL=(ALL) ALL
|
|
|
|
|
%wheel ALL=(ALL) ALL\n"))
|
2014-04-30 20:17:56 +00: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 20:41:01 +00: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)
|
2014-07-24 22:12:35 +00:00
|
|
|
|
#$(user-group-id group)
|
|
|
|
|
#$(user-group-system? group)))
|
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 20:41:01 +00:00
|
|
|
|
|
|
|
|
|
(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
|
2014-06-27 16:57:33 +00:00
|
|
|
|
#$(user-account-password account)
|
|
|
|
|
#$(user-account-system? 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 20:41:01 +00:00
|
|
|
|
|
2014-11-02 22:06:17 +00:00
|
|
|
|
(define (modprobe-wrapper)
|
|
|
|
|
"Return a wrapper for the 'modprobe' command that knows where modules live.
|
|
|
|
|
|
|
|
|
|
This wrapper is typically invoked by the Linux kernel ('call_modprobe', in
|
|
|
|
|
kernel/kmod.c), a situation where the 'LINUX_MODULE_DIRECTORY' environment
|
|
|
|
|
variable is not set---hence the need for this wrapper."
|
|
|
|
|
(let ((modprobe "/run/current-system/profile/bin/modprobe"))
|
|
|
|
|
(gexp->script "modprobe"
|
|
|
|
|
#~(begin
|
|
|
|
|
(setenv "LINUX_MODULE_DIRECTORY"
|
|
|
|
|
"/run/booted-system/kernel/lib/modules")
|
|
|
|
|
(apply execl #$modprobe
|
|
|
|
|
(cons #$modprobe (cdr (command-line))))))))
|
|
|
|
|
|
2015-06-08 12:59:00 +00:00
|
|
|
|
(define* (operating-system-activation-script os #:key container?)
|
2014-05-24 13:51:57 +00:00
|
|
|
|
"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 20:17:56 +00:00
|
|
|
|
(define %modules
|
2014-09-03 08:47:05 +00:00
|
|
|
|
'((gnu build activation)
|
2014-09-03 09:14:12 +00:00
|
|
|
|
(gnu build linux-boot)
|
2014-11-27 22:59:26 +00:00
|
|
|
|
(gnu build linux-modules)
|
Move part of (gnu build linux-boot) to (gnu build file-systems).
* gnu/build/linux-boot.scm (%ext2-endianness, %ext2-sblock-magic,
%ext2-sblock-creator-os, %ext2-sblock-uuid, %ext2-sblock-volume-name,
read-ext2-superblock, ext2-superblock-uuid,
ext2-superblock-volume-name, disk-partitions,
partition-label-predicate, find-partition-by-label,
canonicalize-device-spec, MS_RDONLY, MS_NOSUID, MS_NODEV, MS_NOEXEC,
MS_BIND, MS_MOVE, bind-mount, check-file-system,
mount-flags->bit-mask, mount-file-system): Move to...
* gnu/build/file-systems.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu/services/base.scm: Use (gnu build file-systems).
* gnu/services/dmd.scm (dmd-configuration-file): Likewise.
* gnu/system.scm (operating-system-activation-script): Likewise.
* gnu/system/linux-initrd.scm (base-initrd): Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm): Likewise.
2014-09-03 12:19:51 +00:00
|
|
|
|
(gnu build file-systems)
|
2014-11-27 22:59:26 +00:00
|
|
|
|
(guix build utils)
|
2015-07-08 01:58:15 +00:00
|
|
|
|
(guix build syscalls)
|
2014-11-27 22:59:26 +00:00
|
|
|
|
(guix elf)))
|
2014-04-30 20:17:56 +00:00
|
|
|
|
|
2014-05-24 16:03:27 +00: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 20:41:01 +00:00
|
|
|
|
(mlet* %store-monad ((services (operating-system-services os))
|
2014-05-24 16:03:27 +00: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 20:41:01 +00:00
|
|
|
|
(etc (operating-system-etc-directory os))
|
|
|
|
|
(modules (imported-modules %modules))
|
|
|
|
|
(compiled (compiled-modules %modules))
|
2014-11-02 22:06:17 +00:00
|
|
|
|
(modprobe (modprobe-wrapper))
|
2014-11-11 21:42:15 +00:00
|
|
|
|
(firmware (directory-union
|
|
|
|
|
"firmware" (operating-system-firmware 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 20:41:01 +00:00
|
|
|
|
(accounts (operating-system-accounts os)))
|
2014-04-30 20:17:56 +00: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 20:41:01 +00: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))
|
|
|
|
|
|
2015-05-24 16:02:54 +00:00
|
|
|
|
(assert-valid-users/groups accounts groups)
|
|
|
|
|
|
2014-06-04 14:08:26 +00:00
|
|
|
|
(gexp->file "activate"
|
2014-04-30 13:44:59 +00: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)))
|
|
|
|
|
|
2014-09-03 08:47:05 +00:00
|
|
|
|
(use-modules (gnu build activation))
|
2014-04-30 13:44:59 +00:00
|
|
|
|
|
2014-09-11 20:18:52 +00:00
|
|
|
|
;; Make sure /bin/sh is valid and current.
|
|
|
|
|
(activate-/bin/sh
|
|
|
|
|
(string-append #$(canonical-package bash)
|
|
|
|
|
"/bin/sh"))
|
|
|
|
|
|
2014-04-30 13:44:59 +00:00
|
|
|
|
;; 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 20:41:01 +00: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 20:17:56 +00:00
|
|
|
|
;; Activate setuid programs.
|
|
|
|
|
(activate-setuid-programs (list #$@setuid-progs))
|
|
|
|
|
|
2014-11-02 22:06:17 +00:00
|
|
|
|
;; Tell the kernel to use our 'modprobe' command.
|
|
|
|
|
(activate-modprobe #$modprobe)
|
|
|
|
|
|
2015-06-08 12:59:00 +00:00
|
|
|
|
;; Tell the kernel where firmware is, unless we are
|
|
|
|
|
;; activating a container.
|
|
|
|
|
#$@(if container?
|
|
|
|
|
#~()
|
|
|
|
|
;; Tell the kernel where firmware is.
|
|
|
|
|
#~((activate-firmware
|
|
|
|
|
(string-append #$firmware "/lib/firmware"))
|
|
|
|
|
;; Let users debug their own processes!
|
|
|
|
|
(activate-ptrace-attach)))
|
2015-04-12 13:33:42 +00:00
|
|
|
|
|
2014-05-24 16:03:27 +00:00
|
|
|
|
;; Run the services' activation snippets.
|
|
|
|
|
;; TODO: Use 'load-compiled'.
|
|
|
|
|
(for-each primitive-load '#$actions)
|
|
|
|
|
|
2014-05-17 15:39:30 +00:00
|
|
|
|
;; Set up /run/current-system.
|
2014-05-24 13:51:57 +00:00
|
|
|
|
(activate-current-system)))))
|
|
|
|
|
|
2015-06-08 12:59:00 +00:00
|
|
|
|
(define* (operating-system-boot-script os #:key container?)
|
2014-05-24 13:51:57 +00:00
|
|
|
|
"Return the boot script for OS---i.e., the code started by the initrd once
|
2015-06-08 12:59:00 +00:00
|
|
|
|
we're running in the final root. When CONTAINER? is true, skip all
|
|
|
|
|
hardware-related operations as necessary when booting a Linux container."
|
2014-05-24 13:51:57 +00:00
|
|
|
|
(mlet* %store-monad ((services (operating-system-services os))
|
2015-06-08 12:59:00 +00:00
|
|
|
|
(activate (operating-system-activation-script
|
|
|
|
|
os #:container? container?))
|
2014-05-24 13:51:57 +00:00
|
|
|
|
(dmd-conf (dmd-configuration-file services)))
|
|
|
|
|
(gexp->file "boot"
|
|
|
|
|
#~(begin
|
2015-02-25 04:54:29 +00:00
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
|
|
|
|
|
;; Clean out /tmp and /var/run.
|
|
|
|
|
;;
|
|
|
|
|
;; XXX This needs to happen before service activations, so
|
|
|
|
|
;; it has to be here, but this also implicitly assumes
|
|
|
|
|
;; that /tmp and /var/run are on the root partition.
|
|
|
|
|
(false-if-exception (delete-file-recursively "/tmp"))
|
|
|
|
|
(false-if-exception (delete-file-recursively "/var/run"))
|
|
|
|
|
(false-if-exception (mkdir "/tmp"))
|
|
|
|
|
(false-if-exception (chmod "/tmp" #o1777))
|
|
|
|
|
(false-if-exception (mkdir "/var/run"))
|
|
|
|
|
(false-if-exception (chmod "/var/run" #o755))
|
|
|
|
|
|
2014-05-24 13:51:57 +00:00
|
|
|
|
;; 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 15:39:30 +00:00
|
|
|
|
|
2014-05-06 16:09:25 +00: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 13:44:59 +00:00
|
|
|
|
;; Start dmd.
|
|
|
|
|
(execl (string-append #$dmd "/bin/dmd")
|
|
|
|
|
"dmd" "--config" #$dmd-conf)))))
|
2014-04-23 14:52:14 +00:00
|
|
|
|
|
2014-05-02 22:26:07 +00:00
|
|
|
|
(define (operating-system-root-file-system os)
|
|
|
|
|
"Return the root file system of OS."
|
|
|
|
|
(find (match-lambda
|
2014-06-02 21:58:50 +00:00
|
|
|
|
(($ <file-system> _ _ "/") #t)
|
2014-05-02 22:26:07 +00:00
|
|
|
|
(_ #f))
|
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
2014-05-17 15:39:30 +00:00
|
|
|
|
(define (operating-system-initrd-file os)
|
|
|
|
|
"Return a gexp denoting the initrd file of OS."
|
2014-05-02 22:26:07 +00:00
|
|
|
|
(define boot-file-systems
|
2014-11-25 15:01:21 +00:00
|
|
|
|
(filter file-system-needed-for-boot?
|
2014-05-02 22:26:07 +00:00
|
|
|
|
(operating-system-file-systems os)))
|
|
|
|
|
|
2014-09-22 09:06:42 +00:00
|
|
|
|
(define mapped-devices
|
|
|
|
|
(operating-system-boot-mapped-devices os))
|
|
|
|
|
|
|
|
|
|
(define make-initrd
|
|
|
|
|
(operating-system-initrd os))
|
|
|
|
|
|
|
|
|
|
(mlet %store-monad ((initrd (make-initrd boot-file-systems
|
2015-04-05 20:47:16 +00:00
|
|
|
|
#:linux (operating-system-kernel os)
|
2014-09-22 09:06:42 +00:00
|
|
|
|
#:mapped-devices mapped-devices)))
|
2014-05-17 15:39:30 +00:00
|
|
|
|
(return #~(string-append #$initrd "/initrd"))))
|
|
|
|
|
|
2014-11-26 21:49:11 +00:00
|
|
|
|
(define (operating-system-locale-directory os)
|
|
|
|
|
"Return the directory containing the locales compiled for the definitions
|
|
|
|
|
listed in OS. The C library expects to find it under
|
|
|
|
|
/run/current-system/locale."
|
|
|
|
|
;; While we're at it, check whether the locale of OS is defined.
|
|
|
|
|
(unless (member (operating-system-locale os)
|
|
|
|
|
(map locale-definition-name
|
|
|
|
|
(operating-system-locale-definitions os)))
|
|
|
|
|
(raise (condition
|
|
|
|
|
(&message (message "system locale lacks a definition")))))
|
|
|
|
|
|
|
|
|
|
(locale-directory (operating-system-locale-definitions os)))
|
|
|
|
|
|
2014-06-25 20:46:44 +00:00
|
|
|
|
(define (kernel->grub-label kernel)
|
|
|
|
|
"Return a label for the GRUB menu entry that boots KERNEL."
|
2014-11-11 21:28:57 +00:00
|
|
|
|
(string-append "GNU with "
|
2014-06-25 20:46:44 +00:00
|
|
|
|
(string-titlecase (package-name kernel)) " "
|
|
|
|
|
(package-version kernel)
|
2014-11-11 21:28:57 +00:00
|
|
|
|
" (alpha)"))
|
2014-06-25 20:46:44 +00:00
|
|
|
|
|
2014-06-25 20:54:52 +00:00
|
|
|
|
(define* (operating-system-grub.cfg os #:optional (old-entries '()))
|
|
|
|
|
"Return the GRUB configuration file for OS. Use OLD-ENTRIES to populate the
|
|
|
|
|
\"old entries\" menu."
|
2014-04-23 13:47:42 +00:00
|
|
|
|
(mlet* %store-monad
|
2014-05-17 15:39:30 +00:00
|
|
|
|
((system (operating-system-derivation os))
|
2014-05-02 22:26:07 +00:00
|
|
|
|
(root-fs -> (operating-system-root-file-system os))
|
2014-05-17 15:39:30 +00:00
|
|
|
|
(kernel -> (operating-system-kernel os))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(entries -> (list (menu-entry
|
2014-06-25 20:46:44 +00:00
|
|
|
|
(label (kernel->grub-label kernel))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
(linux kernel)
|
2014-04-28 21:40:24 +00:00
|
|
|
|
(linux-arguments
|
2015-07-16 23:07:50 +00:00
|
|
|
|
(cons* (string-append "--root="
|
|
|
|
|
(file-system-device root-fs))
|
|
|
|
|
#~(string-append "--system=" #$system)
|
|
|
|
|
#~(string-append "--load=" #$system
|
|
|
|
|
"/boot")
|
|
|
|
|
(operating-system-kernel-arguments os)))
|
2014-05-17 15:39:30 +00:00
|
|
|
|
(initrd #~(string-append #$system "/initrd"))))))
|
2014-06-25 20:54:52 +00:00
|
|
|
|
(grub-configuration-file (operating-system-bootloader os) entries
|
|
|
|
|
#:old-entries old-entries)))
|
2014-05-17 15:39:30 +00:00
|
|
|
|
|
2014-06-25 20:48:25 +00:00
|
|
|
|
(define (operating-system-parameters-file os)
|
|
|
|
|
"Return a file that describes the boot parameters of OS. The primary use of
|
|
|
|
|
this file is the reconstruction of GRUB menu entries for old configurations."
|
|
|
|
|
(mlet %store-monad ((initrd (operating-system-initrd-file os))
|
|
|
|
|
(root -> (operating-system-root-file-system os))
|
|
|
|
|
(label -> (kernel->grub-label
|
|
|
|
|
(operating-system-kernel os))))
|
|
|
|
|
(gexp->file "parameters"
|
|
|
|
|
#~(boot-parameters (version 0)
|
|
|
|
|
(label #$label)
|
|
|
|
|
(root-device #$(file-system-device root))
|
|
|
|
|
(kernel #$(operating-system-kernel os))
|
2015-07-16 23:07:50 +00:00
|
|
|
|
(kernel-arguments
|
|
|
|
|
#$(operating-system-kernel-arguments os))
|
2014-06-25 20:48:25 +00:00
|
|
|
|
(initrd #$initrd)))))
|
|
|
|
|
|
2014-05-17 15:39:30 +00: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))
|
2014-06-25 20:48:25 +00:00
|
|
|
|
(initrd (operating-system-initrd-file os))
|
2014-11-26 21:49:11 +00:00
|
|
|
|
(locale (operating-system-locale-directory os))
|
2014-06-25 20:48:25 +00:00
|
|
|
|
(params (operating-system-parameters-file os)))
|
2014-04-27 14:50:34 +00:00
|
|
|
|
(file-union "system"
|
2014-04-28 21:40:24 +00:00
|
|
|
|
`(("boot" ,#~#$boot)
|
2014-04-27 14:50:34 +00:00
|
|
|
|
("kernel" ,#~#$kernel)
|
2014-06-25 20:48:25 +00:00
|
|
|
|
("parameters" ,#~#$params)
|
2014-05-17 15:39:30 +00:00
|
|
|
|
("initrd" ,initrd)
|
2014-04-27 14:50:34 +00:00
|
|
|
|
("profile" ,#~#$profile)
|
2014-11-26 21:49:11 +00:00
|
|
|
|
("locale" ,#~#$locale) ;used by libc
|
2014-04-27 14:50:34 +00:00
|
|
|
|
("etc" ,#~#$etc)))))
|
2013-12-09 20:32:36 +00:00
|
|
|
|
|
|
|
|
|
;;; system.scm ends here
|