aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
blob: 8753c21e423f880e7a6d9f7f6f6ff1139f8b7254 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2014 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (guix))

;; The composite module that re-exports everything from the public modules.

(eval-when (eval load compile)
  (begin
    (define %public-modules
      '(base32
        build-system
        derivations
        download
        ftp-client
        gexp
        monads
        monad-repl
        packages
        store
        utils))

    (for-each (let ((i (module-public-interface (current-module))))
                (lambda (m)
                  (module-use! i (resolve-interface `(guix ,m)))))
              %public-modules)))
m.scm?id=ae7a316b9da0d1a50c5abdc531c68c8e98e561c9'>system: Initialize console keyboard layout in the initrd....Ludovic Courtès 2019-03-22system: Fix misleading comments....Ludovic Courtès 2019-01-17gnu: Add graphical installer support....Mathieu Othacehe 2019-01-13system: Add sudoedit to %setuid-programs....Meiyo Peng 2018-12-26system: Fix missing space in boot labels for kernels that are inferior packages...Pkill -9 2018-12-21system: 'kernel->boot-label' now accepts inferior packages....Pkill -9 2018-11-21linux-initrd: 'expression->initrd' returns the complete file name....Ludovic Courtès 2018-11-18system: De-monadify 'operating-system-bootcfg'....Ludovic Courtès 2018-11-18system: Please Emacs....Ludovic Courtès 2018-11-18system: De-monadify 'operating-system-boot-parameters'....Ludovic Courtès 2018-11-18linux-initrd: Return file-like objects instead of monadic values....Ludovic Courtès 2018-11-18system: Simplify kernel argument handling....Ludovic Courtès 2018-11-18bootloader: De-monadify configuration file generators....Ludovic Courtès 2018-09-26services: shepherd: Add workaround for 0.5.0 in containers....Ludovic Courtès 2018-06-21system: Mapped devices needed for boot do not yield Shepherd services....Ludovic Courtès 2018-06-20services: boot: Take gexps instead of monadic gexps....Ludovic Courtès 2018-06-20services: boot: Reverse the order of boot expressions....Ludovic Courtès 2018-06-18system: Have /run/setuid-programs first in $PATH....Ludovic Courtès 2018-06-12system: Move ~/.config/guix/current first in PATH and INFOPATH....Ludovic Courtès 2018-06-09system: Honor ~/.config/guix/current in /etc/profile....Ludovic Courtès 2018-06-01Merge branch 'master' into core-updatesLudovic Courtès 2018-05-31system: 'read-boot-parameters' provides a more meaningful warning....Ludovic Courtès 2018-05-28Merge branch 'master' into core-updatesMark H Weaver 2018-05-28file-systems: Remove 'title' field and add <file-system-label>....Ludovic Courtès 2018-05-21Merge branch 'master' into core-updatesMark H Weaver 2018-05-19file-systems: Do not export <file-system>....Ludovic Courtès 2018-04-12Merge branch 'master' into core-updatesMark H Weaver 2018-04-11system: Provide a fall-back PATH for non-login shells started with su(1)....Leo Famulari 2018-03-29Merge branch 'master' into core-updatesMarius Bakke 2018-03-20gnu: util-linux: Fix CVE-2018-7738 without grafting....Leo Famulari 2018-03-07services: file-systems: Include 'user-file-systems' service....Ludovic Courtès