summaryrefslogtreecommitdiff
path: root/suweren/system.scm
blob: 8bf5a49495796bf272054a90f72ad17db92cb190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(define-module (suweren system)
  #:use-module (gnu system)		; operating-system
  )

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