dotfiles-guix/systems/installer.scm

24 lines
617 B
Scheme
Raw Normal View History

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