aboutsummaryrefslogtreecommitdiff
path: root/gnu.scm
blob: e3147b39e389a0fc2a90e29c4ed06360bbed882f (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io>
;;;
;;; 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)
  #:export (use-package-modules
            use-service-modules
            use-system-modules))

;;; Commentary:
;;;
;;; This composite module re-exports core parts the (gnu …) public modules.
;;;
;;; Code:

(eval-when (eval load compile)
  (begin
    (define %public-modules
      '((gnu system)
        (gnu system file-systems)
        (gnu system grub)                         ; 'grub-configuration'
        (gnu system linux)                        ; 'base-pam-services'
        (gnu system shadow)                       ; 'user-account'
        (gnu system linux-initrd)
        (gnu system nss)
        (gnu services)
        (gnu services base)
        (gnu packages)
        (gnu packages base)
        (guix gexp)))                             ; so gexps can be used

    (for-each (let ((i (module-public-interface (current-module))))
                (lambda (m)
                  (module-use! i (resolve-interface m))))
              %public-modules)))

(define-syntax-rule (use-package-modules module ...)
  (use-modules (gnu packages module) ...))

(define-syntax-rule (use-service-modules module ...)
  (use-modules (gnu services module) ...))

(define-syntax-rule (use-system-modules module ...)
  (use-modules (gnu system module) ...))

;;; gnu.scm ends here
n 2020-09-13gnu: profanity: Enable plugins, icons and clipboard....Raghav Gururajan 2020-09-13gnu: profanity: Move some dependencies....Raghav Gururajan 2020-09-13gnu: profanity: Make some cosmetic changes....Raghav Gururajan 2020-09-12gnu: Add poezio....Raghav Gururajan 2020-09-12gnu: Add mosquitto....Danny Milosavljevic 2020-09-11gnu: hangups: Update to 0.4.11....Tobias Geerinckx-Rice 2020-09-11gnu: mcabber: Update to 1.1.1....Tobias Geerinckx-Rice 2020-09-09gnu: znc: Update to 1.8.2....Tobias Geerinckx-Rice 2020-09-03gnu: Add bitlbee-purple....Ludovic Courtès 2020-09-01gnu: gajim-omemo: Update to 2.7.7....Mason Hock 2020-08-29gnu: Add libhandy-0.0....Leo Prikler 2020-08-16gnu: bitlbee-discord: Fix typo in description....Brendan Tildesley 2020-07-29gnu: gloox: Update to 1.0.24....Tobias Geerinckx-Rice 2020-07-18gnu: tdlib: Update to 1.6.6....Brett Gilio 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-07-12gnu: profanity: Update to 0.9.5....Tanguy Le Carrour 2020-07-01gnu: ngircd: Update to 26....Tobias Geerinckx-Rice 2020-07-01gnu: nheko: Update to 0.7.2....Tobias Geerinckx-Rice 2020-07-01gnu: mtxclient: Update to 0.3.1....Tobias Geerinckx-Rice 2020-06-24gnu: libsignal-protocol-c: Don't use unstable tarball....Efraim Flashner 2020-06-17gnu: znc: Update home-page....Efraim Flashner 2020-06-17gnu: znc: Use HTTPS....Timotej Lazar 2020-06-16gnu: Add chatty....Jonathan Brielmaier 2020-06-16gnu: Add purple-mm-sms....Jonathan Brielmaier 2020-06-14gnu: qtox: Don't use unstable tarball....Efraim Flashner 2020-06-14gnu: qtox: Update to 1.17.2....Reza Alizadeh Majd 2020-06-14gnu: c-toxcore: Update to 0.2.12....Reza Alizadeh Majd 2020-06-11Merge branch 'master' into stagingMarius Bakke 2020-06-08gnu: znc: Update to 1.8.1....Tobias Geerinckx-Rice 2020-06-06Merge branch 'master' into stagingMarius Bakke 2020-06-02gnu: gajim-omemo: Update home page....Arun Isaac 2020-06-02gnu: gajim-omemo: Update to 2.7.4....Arun Isaac 2020-05-26Merge branch 'master' into stagingMarius Bakke 2020-05-26gnu: nheko: Update to 0.7.1....Jonathan Brielmaier 2020-05-26gnu: mtxclient: Update to 0.3.0....Jonathan Brielmaier