summaryrefslogtreecommitdiff
path: root/systems/installer.scm
blob: 6d072fac970629e9e9e2a39af741227e1e0324e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; 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")))))