blob: c868119715bf2ac266f2be05d4f8c035bb8955a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
; 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")))))
|