summaryrefslogtreecommitdiff
path: root/systems/mcdowell.scm
blob: 55fb530bfa055a5d5043096ee5a4e031ce2591b7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(define-module (systems mcdowell)
  #:use-module (machines portable-bios)	; bootloader-configuration*
					; file-systems*
  #:use-module (suweren system)		; %suweren-operating-system
  #:use-module (users marekpasnikowski) ; marekpasnikowski-account
  )

;; string
(define host-name*
  "mcdowell")

;; (record user-account)
(define users*
  (list marekpasnikowski-account))

;; record operating-system
(define operating-system*
  (%suweren-operating-system bootloader-configuration*
			     host-name*
			     (file-systems* host-name*)
			     users*))

operating-system*