dotfiles-guix/systems/installer.scm

23 lines
617 B
Scheme

; base system for creating installer images
(use-modules (freya system)
(sakura services cow)
(gnu))
; installer system
(operating-system
(inherit %base-freya-operating-system)
(host-name "installer")
(file-systems (append %base-live-file-systems
%base-file-systems))
(pam-services
;; Explicitly allow for empty passwords.
(base-pam-services #:allow-empty-passwords? #t))
(services (cons* (cow-store-service)
(operating-system-services
%base-freya-operating-system)))
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(targets '("/dev/sda")))))