summaryrefslogtreecommitdiff
path: root/gnu.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-02-04 21:58:15 +0100
committerLudovic Courtès <ludo@gnu.org>2015-02-04 22:49:35 +0100
commit996ed73948e92eb2005a2a282856753d707f452c (patch)
tree3dd45afdbbb22c01652cd2df9b7b61742440c6ab /gnu.scm
parentffd74de0c6de7435fcdc8e340efade032c365081 (diff)
system: Add bindings to configure libc's NSS.
* gnu/system/nss.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. * gnu.scm (%public-modules): Add it. * gnu/system.scm (<operating-system>)[name-service-switch]: New field. (etc-directory): Add #:nss parameter and honor it. (operating-system-etc-directory): Adjust call accordingly. * doc/guix.texi (operating-system Reference): Document 'name-service-switch'. (Name Service Switch): New section.
Diffstat (limited to 'gnu.scm')
-rw-r--r--gnu.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu.scm b/gnu.scm
index d9b9117b8ad..e3147b39e38 100644
--- a/gnu.scm
+++ b/gnu.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io> 3;;; Copyright © 2015 Joshua S. Grant <jgrant@parenthetical.io>
4;;; 4;;;
5;;; This file is part of GNU Guix. 5;;; This file is part of GNU Guix.
@@ -37,6 +37,7 @@
37 (gnu system linux) ; 'base-pam-services' 37 (gnu system linux) ; 'base-pam-services'
38 (gnu system shadow) ; 'user-account' 38 (gnu system shadow) ; 'user-account'
39 (gnu system linux-initrd) 39 (gnu system linux-initrd)
40 (gnu system nss)
40 (gnu services) 41 (gnu services)
41 (gnu services base) 42 (gnu services base)
42 (gnu packages) 43 (gnu packages)