all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 6b421550b7443954253eaec3a4bf5680a672bff7 1467 bytes (raw)
name: gnu/system/examples/bare-hurd.tmpl 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
;; -*-scheme-*-

;; This is an operating system configuration template
;; for a "bare bones" setup, with no X11 display server.

;; To build a disk image for a virtual machine, do
;;
;;     ./pre-inst-env guix system disk-image --target=i586-pc-gnu --no-grafts \
;;         gnu/system/examples/bare-hurd.tmpl
;;
;; it boots, but needs activation, more setup and services to be useful.

(use-modules (gnu) (gnu system hurd) (guix utils))
(use-service-modules ssh)
(use-package-modules ssh)

(define %hurd-os
  (operating-system
    (inherit %hurd-default-operating-system)
    (bootloader (bootloader-configuration
                 (bootloader grub-minimal-bootloader)
                 (target "/dev/sdX")))
    (file-systems (cons (file-system
                          (device (file-system-label "my-root"))
                          (mount-point "/")
                          (type "ext2"))
                        %base-file-systems))
    (host-name "guixygnu")
    (timezone "Europe/Amsterdam")
    (packages (cons openssh %base-packages/hurd))
    (services (cons (service openssh-service-type
                             (openssh-configuration
                              (use-pam? #f)
                              (port-number 2222)
                              (permit-root-login #t)
                              (allow-empty-passwords? #t)
                              (password-authentication? #t)))
               %base-services/hurd))))

%hurd-os

debug log:

solving 6b421550b7 ...
found 6b421550b7 in https://yhetil.org/guix/20200608125802.10617-4-janneke@gnu.org/
found 16f20416aa in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 16f20416aa17d0c537f919e331bd86246e45d3d7	gnu/system/examples/bare-hurd.tmpl

applying [1/1] https://yhetil.org/guix/20200608125802.10617-4-janneke@gnu.org/
diff --git a/gnu/system/examples/bare-hurd.tmpl b/gnu/system/examples/bare-hurd.tmpl
index 16f20416aa..6b421550b7 100644

Checking patch gnu/system/examples/bare-hurd.tmpl...
Applied patch gnu/system/examples/bare-hurd.tmpl cleanly.

index at:
100644 6b421550b7443954253eaec3a4bf5680a672bff7	gnu/system/examples/bare-hurd.tmpl

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.