diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-10-09 21:21:29 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-10-09 21:21:29 +0200 |
commit | 24fee2615ce7a18a7fcd6054b73375a890556cf3 (patch) | |
tree | 353f9e87b8ec736f32eed840c58dc7d5651c19cf /gnu/system/examples/bare-bones.tmpl | |
parent | 7d134b57b79188f8c878625d4e09f9bd6181e8c0 (diff) | |
parent | 7937c8827b8d23347a3159b4696335bd19fc17aa (diff) | |
download | guix-24fee2615ce7a18a7fcd6054b73375a890556cf3.tar guix-24fee2615ce7a18a7fcd6054b73375a890556cf3.tar.gz |
Merge branch 'master' into gnome-team
Diffstat (limited to 'gnu/system/examples/bare-bones.tmpl')
-rw-r--r-- | gnu/system/examples/bare-bones.tmpl | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/system/examples/bare-bones.tmpl b/gnu/system/examples/bare-bones.tmpl index 45b4995574..dc6aff5273 100644 --- a/gnu/system/examples/bare-bones.tmpl +++ b/gnu/system/examples/bare-bones.tmpl @@ -4,6 +4,9 @@ (use-modules (gnu)) (use-service-modules networking ssh) +;; If you want to use HTTPS, you most likely want to include +;; "certs" in the line below. Also read the comment about +;; "nss-certs" later in this file. (use-package-modules screen ssh) (operating-system @@ -43,10 +46,12 @@ %base-user-accounts)) ;; Globally-installed packages. + ;; Add "nss-certs" for Mozilla's approved CA certs. You would + ;; have to have included "certs" in use-package-modules above. (packages (cons screen %base-packages)) - ;; Add services to the baseline: a DHCP client and - ;; an SSH server. + ;; Add services to the baseline: a DHCP client and an SSH + ;; server. You may wish to add an NTP service here. (services (append (list (service dhcp-client-service-type) (service openssh-service-type (openssh-configuration |