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)
|
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)
|
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?
|
|
|
|
|
operating-system-services
|
|
|
|
|
operating-system-packages
|
2014-01-31 08:36:48 -05:00
|
|
|
|
operating-system-bootloader-entries
|
|
|
|
|
operating-system-host-name
|
|
|
|
|
operating-system-kernel
|
|
|
|
|
operating-system-initrd
|
|
|
|
|
operating-system-users
|
|
|
|
|
operating-system-groups
|
|
|
|
|
operating-system-packages
|
|
|
|
|
operating-system-timezone
|
|
|
|
|
operating-system-locale
|
|
|
|
|
operating-system-services
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-27 08:58:15 -04:00
|
|
|
|
operating-system-derivation
|
|
|
|
|
operating-system-profile))
|
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))
|
|
|
|
|
(bootloader operating-system-bootloader ; package
|
|
|
|
|
(default grub))
|
|
|
|
|
(bootloader-entries operating-system-bootloader-entries ; list
|
|
|
|
|
(default '()))
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(initrd operating-system-initrd ; monadic derivation
|
|
|
|
|
(default (gnu-system-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")
|
|
|
|
|
(id 0))
|
|
|
|
|
(user-group
|
|
|
|
|
(name "users")
|
|
|
|
|
(id 100)
|
|
|
|
|
(members '("guest"))))))
|
|
|
|
|
|
|
|
|
|
(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
|
|
|
|
|
|
|
|
|
|
(services operating-system-services ; list of monadic services
|
2014-02-19 15:08:28 -05:00
|
|
|
|
(default %base-services)))
|
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
|
|
|
|
|
|
|
|
|
(define* (etc-directory #:key
|
2013-12-10 15:46:59 -05:00
|
|
|
|
(locale "C") (timezone "Europe/Paris")
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(accounts '())
|
|
|
|
|
(groups '())
|
|
|
|
|
(pam-services '())
|
|
|
|
|
(profile "/var/run/current-system/profile"))
|
|
|
|
|
"Return a derivation that builds the static part of the /etc directory."
|
|
|
|
|
(mlet* %store-monad
|
2014-04-27 10:50:34 -04:00
|
|
|
|
((passwd (passwd-file accounts))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(shadow (passwd-file accounts #:shadow? #t))
|
|
|
|
|
(group (group-file groups))
|
|
|
|
|
(pam.d (pam-services->directory pam-services))
|
|
|
|
|
(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
|
|
|
|
|
/run/current-system/bin/sh
|
|
|
|
|
/run/current-system/bin/bash\n"))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(issue (text-file "issue" "
|
|
|
|
|
This is an alpha preview of the GNU system. Welcome.
|
|
|
|
|
|
|
|
|
|
This image features the GNU Guix package manager, which was used to
|
|
|
|
|
build it (http://www.gnu.org/software/guix/). The init system is
|
|
|
|
|
GNU dmd (http://www.gnu.org/software/dmd/).
|
|
|
|
|
|
|
|
|
|
You can log in as 'guest' or 'root' with no password.
|
|
|
|
|
"))
|
|
|
|
|
|
|
|
|
|
;; 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
|
|
|
|
|
2013-12-09 15:32:36 -05:00
|
|
|
|
export PATH=$HOME/.guix-profile/bin:" profile "/bin:" profile "/sbin
|
|
|
|
|
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-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)
|
|
|
|
|
("shells" ,#~#$shells)
|
|
|
|
|
("profile" ,#~#$bashrc)
|
|
|
|
|
("localtime" ,#~(string-append #$tzdata "/share/zoneinfo/"
|
|
|
|
|
#$timezone))
|
|
|
|
|
("passwd" ,#~#$passwd)
|
|
|
|
|
("shadow" ,#~#$shadow)
|
|
|
|
|
("group" ,#~#$group)))))
|
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"))
|
|
|
|
|
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(define (operating-system-accounts os)
|
|
|
|
|
"Return the user accounts for OS, including an obligatory 'root' account."
|
|
|
|
|
(mlet %store-monad ((services (sequence %store-monad
|
|
|
|
|
(operating-system-services os))))
|
|
|
|
|
(return (cons (user-account
|
|
|
|
|
(name "root")
|
|
|
|
|
(password "")
|
|
|
|
|
(uid 0) (gid 0)
|
|
|
|
|
(comment "System administrator")
|
|
|
|
|
(home-directory "/root"))
|
|
|
|
|
(append (operating-system-users os)
|
|
|
|
|
(append-map service-user-accounts
|
|
|
|
|
services))))))
|
|
|
|
|
|
|
|
|
|
(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-04-23 09:47:42 -04:00
|
|
|
|
((services (sequence %store-monad (operating-system-services os)))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(pam-services ->
|
|
|
|
|
;; Services known to PAM.
|
|
|
|
|
(delete-duplicates
|
|
|
|
|
(cons %pam-other-services
|
|
|
|
|
(append-map service-pam-services services))))
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(accounts (operating-system-accounts os))
|
2014-04-27 08:58:15 -04:00
|
|
|
|
(profile-drv (operating-system-profile os))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(groups -> (append (operating-system-groups os)
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(append-map service-user-groups services))))
|
|
|
|
|
(etc-directory #:accounts accounts #:groups groups
|
|
|
|
|
#:pam-services pam-services
|
|
|
|
|
#:locale (operating-system-locale os)
|
|
|
|
|
#:timezone (operating-system-timezone os)
|
|
|
|
|
#:profile profile-drv)))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
2014-04-23 10:52:14 -04:00
|
|
|
|
(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 (sequence %store-monad (operating-system-services os)))
|
|
|
|
|
(etc (operating-system-etc-directory os))
|
2014-04-30 09:44:59 -04:00
|
|
|
|
(modules (imported-modules '((guix build activation))))
|
|
|
|
|
(compiled (compiled-modules '((guix build activation))))
|
|
|
|
|
(dmd-conf (dmd-configuration-file services)))
|
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)
|
|
|
|
|
|
|
|
|
|
;; Start dmd.
|
|
|
|
|
(execl (string-append #$dmd "/bin/dmd")
|
|
|
|
|
"dmd" "--config" #$dmd-conf)))))
|
2014-04-23 10:52:14 -04:00
|
|
|
|
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(define (operating-system-derivation os)
|
|
|
|
|
"Return a derivation that builds OS."
|
|
|
|
|
(mlet* %store-monad
|
2014-04-27 10:50:34 -04:00
|
|
|
|
((profile (operating-system-profile os))
|
|
|
|
|
(etc (operating-system-etc-directory os))
|
2014-04-23 09:47:42 -04:00
|
|
|
|
(services (sequence %store-monad (operating-system-services os)))
|
2014-04-28 17:40:24 -04:00
|
|
|
|
(boot (operating-system-boot-script os))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
(kernel -> (operating-system-kernel os))
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(initrd (operating-system-initrd os))
|
2014-04-28 17:40:24 -04:00
|
|
|
|
(initrd-file -> #~(string-append #$initrd "/initrd"))
|
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
|
|
|
|
|
(list "--root=/dev/sda1"
|
|
|
|
|
#~(string-append "--load=" #$boot)))
|
2014-01-29 07:04:00 -05:00
|
|
|
|
(initrd initrd-file))))
|
2014-04-28 17:07:08 -04:00
|
|
|
|
(grub.cfg (grub-configuration-file entries)))
|
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-04-28 17:40:24 -04:00
|
|
|
|
("initrd" ,initrd-file)
|
2014-04-27 10:50:34 -04:00
|
|
|
|
("profile" ,#~#$profile)
|
|
|
|
|
("grub.cfg" ,#~#$grub.cfg)
|
|
|
|
|
("etc" ,#~#$etc)))))
|
2013-12-09 15:32:36 -05:00
|
|
|
|
|
|
|
|
|
;;; system.scm ends here
|