2020-04-13 15:15:10 +00:00
|
|
|
;; -*-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
|
|
|
|
;;
|
2021-01-17 10:32:51 +00:00
|
|
|
;; ./pre-inst-env guix system image --target=i586-pc-gnu \
|
2020-04-13 15:15:10 +00:00
|
|
|
;; gnu/system/examples/bare-hurd.tmpl
|
|
|
|
;;
|
2020-05-07 17:14:07 +00:00
|
|
|
;; You may run it like so
|
|
|
|
;;
|
|
|
|
;; guix environment --ad-hoc qemu -- qemu-system-i386 -enable-kvm -m 512M \
|
|
|
|
;; -device rtl8139,netdev=net0 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:10022-:2222 \
|
|
|
|
;; -snapshot -hda <the-image>
|
|
|
|
;;
|
|
|
|
;; and use it like
|
|
|
|
;;
|
|
|
|
;; ssh -p 10022 root@localhost
|
|
|
|
;; guix build -e '(@@ (gnu packages commencement) gnu-make-boot0)'
|
|
|
|
;;
|
|
|
|
;; or even (if you use --image-size=3G)
|
|
|
|
;;
|
|
|
|
;; guix build hello
|
2020-04-13 15:15:10 +00:00
|
|
|
|
|
|
|
(use-modules (gnu) (gnu system hurd) (guix utils))
|
2020-05-07 17:14:07 +00:00
|
|
|
(use-service-modules ssh)
|
|
|
|
(use-package-modules ssh)
|
2020-04-13 15:15:10 +00:00
|
|
|
|
|
|
|
(define %hurd-os
|
|
|
|
(operating-system
|
|
|
|
(inherit %hurd-default-operating-system)
|
|
|
|
(bootloader (bootloader-configuration
|
|
|
|
(bootloader grub-minimal-bootloader)
|
2021-08-07 19:07:47 +00:00
|
|
|
(targets '("/dev/sdX"))))
|
2020-04-13 15:15:10 +00:00
|
|
|
(file-systems (cons (file-system
|
|
|
|
(device (file-system-label "my-root"))
|
|
|
|
(mount-point "/")
|
|
|
|
(type "ext2"))
|
|
|
|
%base-file-systems))
|
|
|
|
(host-name "guixygnu")
|
|
|
|
(timezone "Europe/Amsterdam")
|
2020-10-09 20:55:46 +00:00
|
|
|
(users (cons (user-account
|
|
|
|
(name "guix")
|
|
|
|
(comment "Anonymous Hurd Hacker")
|
|
|
|
(group "users")
|
|
|
|
(supplementary-groups '("wheel")))
|
|
|
|
%base-user-accounts))
|
2020-05-07 17:14:07 +00:00
|
|
|
(packages (cons openssh-sans-x %base-packages/hurd))
|
|
|
|
(services (cons (service openssh-service-type
|
|
|
|
(openssh-configuration
|
|
|
|
(openssh openssh-sans-x)
|
|
|
|
(port-number 2222)
|
|
|
|
(permit-root-login #t)
|
|
|
|
(allow-empty-passwords? #t)
|
|
|
|
(password-authentication? #t)))
|
2020-10-09 20:55:46 +00:00
|
|
|
%base-services/hurd))))
|
2020-04-13 15:15:10 +00:00
|
|
|
|
|
|
|
%hurd-os
|