123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- (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
- (allow-empty-passwords?
- (password-authentication?
- %base-services/hurd))))
- %hurd-os
|