aboutsummaryrefslogtreecommitdiff
;; -*-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 image --image-type=hurd-raw \
;;         gnu/system/examples/bare-hurd.tmpl
;;
;; You may run it like so
;;
;;     guix shell qemu -- qemu-system-i386 -enable-kvm -m 2048 \
;;      -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

(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)
                 (targets '("/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")
    (users (cons (user-account
                  (name "guix")
                  (comment "Anonymous Hurd Hacker")
                  (group "users")
                  (supplementary-groups '("wheel")))
                 %base-user-accounts))
    (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)))
                    %base-services/hurd))))

%hurd-os
href='/guix/commit/etc/teams.scm?id=7319b4d5286d31a9c6a889e81af72308efdaab41'>teams: Add Tanguy Le Carrour....Tanguy Le Carrour 2024-03-08teams: Add 宋文武 to the qt team....宋文武 2024-03-08teams: lxqt: Remove qt.scm from scope....宋文武 2024-03-08teams: Add entry for Adam Faiz....AwesomeAdam54321 2024-02-13teams: Add Sugar team....Ricardo Wurmus 2024-02-13teams: go: Add all related files to the scope....Sharlatan Hellseher 2024-02-05teams: mozilla: Add tor-browsers.scm....Clément Lassieur 2024-02-03teams: Add Mark H Weaver to the ‘mozilla’ team....Mark H Weaver 2024-01-30teams: go: Add golang-xyz.scm to scope....Sharlatan Hellseher 2024-01-28teams: go: Add more related files to the scope....Sharlatan Hellseher 2024-01-24teams: Remove Efraim Flashner from the science team....Efraim Flashner 2024-01-16teams: Add Wilko Meyer to kernel....Wilko Meyer 2024-01-14teams: Add Vivien Kraus....Vivien Kraus 2024-01-12teams: Add entry for Sharlatan Hellseher....Sharlatan Hellseher 2024-01-05teams: Add ‘core-packages’ team....Ludovic Courtès 2023-12-22teams: mozilla: Add icecat-extension.scm and browser-extensions.scm....Clément Lassieur 2023-12-20teams: Add entry for Clément Lassieur....Clément Lassieur 2023-11-20teams: Include golang-check.scm in the go team....Benjamin 2023-11-12teams: Add Ekaitz Zarraga to bootstrap and zig....Ekaitz Zarraga 2023-11-12teams: Add Zig team....Ekaitz Zarraga 2023-11-01teams.scm: Add file-local variable prop line for the mode....Maxim Cournoyer 2023-10-27teams: Add myself to audio team....Gabriel Wicki 2023-10-27teams: Add audio team....Gabriel Wicki 2023-10-22teams: Adjust shebang to use 'guix repl'....Maxim Cournoyer