summaryrefslogtreecommitdiff
path: root/suweren
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-26 09:55:09 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-26 09:55:09 +0200
commit3896d003630ea01f8523cfcd8a5fc7a9d436600b (patch)
tree72fa178e5af36c121196b3bd90ac1f7d997b42a7 /suweren
parent47df1eb7aed542f2dfe4a91e7626b0ee64372d4a (diff)
feat!(system): implement the keyboard-value variable
Diffstat (limited to 'suweren')
-rw-r--r--suweren/system.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/suweren/system.scm b/suweren/system.scm
index 3cdd427..1cc93a9 100644
--- a/suweren/system.scm
+++ b/suweren/system.scm
@@ -83,6 +83,7 @@
;; record package ->
;; record bootloader-configuration ->
+;; bool | record keyboard-layout ->
;; record package ->
;; (record package) ->
;; string ->
@@ -92,6 +93,7 @@
;; record operating-system
(define-public (%suweren-operating-system kernel*
bootloader-configuration*
+ keyboard-layout*
initrd*
firmware*
host-name*
@@ -122,6 +124,7 @@
users*)))
(operating-system (kernel kernel*)
(bootloader bootloader-configuration*)
+ (keyboard-layout keyboard-layout*)
(initrd initrd*)
(firmware firmware*)
(host-name host-name*)