dotfiles-guix/systems/installer.scm

22 lines
574 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)
%base-freya-services))
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(targets '("/dev/sda")))))