summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorJacob Hrbek <kreyren@rixotstudio.cz>2023-03-07 06:57:48 +0000
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2024-04-18 10:39:48 -0400
commitfdfd7667c66cf9ce746330f39bcd366e124460e1 (patch)
tree2d8494f5f885e34df3d16d51fbf2a6f8cfd821fe /gnu
parent3d34252c2d75ebaf6b269e7cb4e7af61a0f3311f (diff)
system: Add 'nss-certs' to %base-packages-networking.
See the discussion at <https://lists.gnu.org/archive/html/guix-devel/2024-04/msg00020.html>. * gnu/system.scm (%base-packages-networking): Add nss-certs. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I24f336e4bb25561d0ec9344a1a4061d2ecc9aed8
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index 9b5c96d0ad2..c7f8003ad26 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -50,6 +50,7 @@
50 #:use-module (gnu packages admin) 50 #:use-module (gnu packages admin)
51 #:use-module (gnu packages base) 51 #:use-module (gnu packages base)
52 #:use-module (gnu packages bash) 52 #:use-module (gnu packages bash)
53 #:use-module ((gnu packages certs) #:select (nss-certs))
53 #:use-module (gnu packages compression) 54 #:use-module (gnu packages compression)
54 #:use-module (gnu packages cross-base) 55 #:use-module (gnu packages cross-base)
55 #:use-module (gnu packages firmware) 56 #:use-module (gnu packages firmware)
@@ -926,6 +927,7 @@ of PROVENANCE-SERVICE-TYPE to its services."
926 (list inetutils isc-dhcp 927 (list inetutils isc-dhcp
927 iproute 928 iproute
928 wget 929 wget
930 nss-certs
929 ;; wireless-tools is deprecated in favor of iw, but it's still what 931 ;; wireless-tools is deprecated in favor of iw, but it's still what
930 ;; many people are familiar with, so keep it around. 932 ;; many people are familiar with, so keep it around.
931 iw wireless-tools)) 933 iw wireless-tools))