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)))
staller: Fix issue with "Esperanto" locale....Mathieu Othacehe 2020-04-09installer: Include empty variant in keyboard layout selection....Florian Pelz 2020-04-09installer: Allow Alt+Shift toggle from non-Latin keyboard layouts....Florian Pelz 2020-04-08installer: Add proxy support....Mathieu Othacehe 2020-04-08installer: Turn help menu into parameters menu....Mathieu Othacehe 2020-04-07installer: Reduce height of the help window....Ludovic Courtès 2020-04-06installer: Adapt to Guile-newt revision 2....Mathieu Othacehe 2020-04-06installer: Add a help page....Mathieu Othacehe 2020-03-26installer: tests: Use a filter to select desktop-environments....Mathieu Othacehe 2020-03-23installer: Fix cow-store umount issue....Mathieu Othacehe 2020-03-05installer: Fix cow-store umount....Mathieu Othacehe 2020-03-05tests: install: Add "gui-installed-os"....Ludovic Courtès 2020-03-05installer: Honor /tmp/installer-system-init-options....Ludovic Courtès 2020-03-05installer: Run commands without hopping through the shell....Ludovic Courtès 2020-03-05installer: Bypass connectivity check when /tmp/installer-assume-online exists....Ludovic Courtès 2020-03-05installer: Implement a dialog on /var/guix/installer-socket....Ludovic Courtès 2020-02-22installer: Log important bits to syslog....Ludovic Courtès 2020-02-22installer: Add 'syslog' macro to write to syslog....Ludovic Courtès 2020-02-12installer: Fix installer restart dialog....Mathieu Othacehe 2020-02-12installer: Remove the cow-store overlay after system installation....Mathieu Othacehe 2020-01-23installer: Make "TRANSLATORS" comment visible....Ludovic Courtès 2020-01-20installer: Disable F12 hot key....Ludovic Courtès 2020-01-20installer: Makes sure the installer proceeds after hitting "Edit"....Ludovic Courtès 2020-01-12installer: Add an "Edit" button on the final page....Ludovic Courtès 2020-01-05installer: Add JFS support....Tobias Geerinckx-Rice 2020-01-05installer: Fix typo....Tobias Geerinckx-Rice 2019-12-29installer: Pass '--fallback' to 'guix system init'....Ludovic Courtès 2019-09-25installer: Update to Guile-Parted 0.0.2 release....Mathieu Othacehe 2019-09-23installer: Fix run-input-page calls....Mathieu Othacehe 2019-08-26installer: Hide the Wi-Fi passphrase by default....Tobias Geerinckx-Rice 2019-08-26installer: Show, don't Hide....Tobias Geerinckx-Rice 2019-07-25maint: Switch to Guile-JSON 3.x....Ludovic Courtès