diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2026-03-19 18:46:45 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2026-03-20 13:27:16 +0100 |
| commit | 72e724cef438a7e16052dd1a38bf03027635f2bc (patch) | |
| tree | ec6ea468ae736b115af16611ec70bb136054171b /gnu/services | |
| parent | 1ae20f03f43a2af2bcde3751a2809fe152298d34 (diff) | |
services, tests: Refer to inherited field values where applicable.
* gnu/machine/hetzner.scm (operating-system-authorize): Refer to ‘services’
instead of calling ‘operating-system-user-services’.
* gnu/services/virtualization.scm (secret-service-operating-system): Likewise.
* gnu/tests.scm (operating-system-with-console-syslog): Likewise.
* gnu/tests/avahi.scm (%avahi-os): Likewise.
* gnu/tests/base.scm (%test-guix-daemon-unprivileged): Likewise.
* gnu/tests/nfs.scm (%nfs-os): Likewise.
(run-nfs-full-test): Likewise.
* gnu/system/vm.scm (virtualized-operating-system): Refer to ‘initrd-modules’
instead of calling ‘operating-system-initrd-modules’.
Change-Id: I00c5f5c1e171b174bf0ca709b2dbd13a2fe161b5
Diffstat (limited to 'gnu/services')
| -rw-r--r-- | gnu/services/virtualization.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/services/virtualization.scm b/gnu/services/virtualization.scm index 3c9aadaae3f..7d15abaf619 100644 --- a/gnu/services/virtualization.scm +++ b/gnu/services/virtualization.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 Ryan Moe <ryan.moe@gmail.com> -;;; Copyright © 2018, 2020-2025 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2018, 2020-2026 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2020, 2021, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2021 Timotej Lazar <timotej.lazar@araneo.si> ;;; Copyright © 2022, 2025 Oleg Pykhalov <go.wigust@gmail.com> @@ -1211,7 +1211,7 @@ that will be listening to receive secret keys on ADDRESS." ;; those keys are going to be overwritten by secrets received from the ;; host anyway. (cons (service secret-service-type address) - (modify-services (operating-system-user-services os) + (modify-services services (openssh-service-type config => (openssh-configuration (inherit config) |
