;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu services hurd) #:use-module (gnu packages admin) #:use-module (gnu services) #:use-module (gnu system) #:use-module (guix gexp) #:use-module (guix records) #:export (hurd-etc-service)) ;;; Commentary: ;;; ;;; This module implements services for the Hurd. ;;; ;;; Code: ;;; ;;; The ETC service for the Hurd. ;;; (define (hurd-etc-service os) "Return a that builds containing the static part of the /etc directory." (let ((profile (mixed-text-file "profile" "\ # Generated by hurd-etc-services export PS1='\\u@\\h\\$ ' GUIX_PROFILE=\"/run/current-system/profile\" . \"$GUIX_PROFILE/etc/profile\" GUIX_PROFILE=\"$HOME/.guix-profile\" if [ -f \"$GUIX_PROFILE/etc/profile\" ]; then . \"$GUIX_PROFILE/etc/profile\" fi\n")) (hurd (operating-system-hurd os))) (etc-service `(("services" ,(file-append net-base "/etc/services")) ("protocols" ,(file-append net-base "/etc/protocols")) ("profile" ,profile) ("hostname" ,(plain-file "hostname" (operating-system-host-name os))) ("login" ,(file-append hurd "/etc/login")) ("motd" ,(file-append hurd "/etc/motd")))))) ;;; hurd.scm ends here