;; -*-scheme-*- ;; This is an operating system configuration template ;; for a "bare bones" QEMU 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 ;; ;; 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))) ;; For installing on a real (non-QEMU) machine, use: ;; (static-networking-service-type ;; (list %loopback-static-networking ;; (static-networking ;; ...))) ;; %base-services/hurd %base-services+qemu-networking/hurd)))) %hurd-os iv>
AgeCommit message (Expand)Author
2023-06-07gnu: conky: Update to 1.19.2....* gnu/packages/conky.scm (conky): Update to 1.19.2. Pierre Neidhardt
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-05-07gnu: conky: Enable WLAN support....* gnu/packages/conky.scm (conky)[arguments]: Add "-DBUILD_WLAN=ON" to #:configure-flags. [inputs]: Add wireless-tools. Tobias Geerinckx-Rice
2021-05-06gnu: conky: Run tests....There were always tests. * gnu/packages/conky.scm (conky)[arguments]: Build and run tests. Tobias Geerinckx-Rice
2021-05-06gnu: conky: Update to 1.12.2....* gnu/packages/conky.scm (conky): Update to 1.12.2. Tobias Geerinckx-Rice