summaryrefslogtreecommitdiff
path: root/suweren
diff options
context:
space:
mode:
Diffstat (limited to 'suweren')
-rw-r--r--suweren/system.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/suweren/system.scm b/suweren/system.scm
index bdc8d87..2fb5524 100644
--- a/suweren/system.scm
+++ b/suweren/system.scm
@@ -81,12 +81,14 @@
(login-configuration (inherit configuration)
(allow-empty-passwords? #f)))
+;; record package ->
;; record bootloader-configuration ->
;; string ->
;; (record file-system) ->
;; (record user-account) ->
;; record operating-system
-(define-public (%suweren-operating-system bootloader-configuration*
+(define-public (%suweren-operating-system kernel*
+ bootloader-configuration*
host-name*
file-systems*
users*)
@@ -111,7 +113,8 @@
suweren-services))
(users* (append %base-user-accounts
users*)))
- (operating-system (bootloader bootloader-configuration*)
+ (operating-system (kernel kernel*)
+ (bootloader bootloader-configuration*)
(host-name host-name*)
(file-systems file-systems*)
(users users*)