From 113bc0817221e8db8152c817a3805c517eae31e3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Sun, 28 Apr 2019 21:46:44 +0200
Subject: [PATCH] installer: Add 'nss-certs' to the networking services.

Fixes <https://bugs.gnu.org/35469>.
Reported by Florian Pelz <pelzflorian@pelzflorian.de>.

* gnu/installer/services.scm (%system-services): Add service for
'nss-certs', with 'recommended?' set to #t.
---
 gnu/installer/services.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/installer/services.scm b/gnu/installer/services.scm
index 0b46006add9..fbfcdac4e5c 100644
--- a/gnu/installer/services.scm
+++ b/gnu/installer/services.scm
@@ -89,6 +89,11 @@ (define %system-services
       (name (G_ "Tor anonymous network router"))
       (type 'networking)
       (snippet '((service tor-service-type))))
+     (system-service
+      (name (G_ "Mozilla NSS certificates, for HTTPS access"))
+      (type 'networking)
+      (packages '((specification->package "nss-certs")))
+      (recommended? #t))
 
      ;; Network connectivity management.
      (system-service
-- 
GitLab