diff options
Diffstat (limited to 'machines/portable-bios.scm')
-rw-r--r-- | machines/portable-bios.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/machines/portable-bios.scm b/machines/portable-bios.scm index a5c03c1..416960d 100644 --- a/machines/portable-bios.scm +++ b/machines/portable-bios.scm @@ -8,12 +8,13 @@ ) ;; bootloader-configuration -(define-public bootloader-configuration* +(define-public (bootloader-configuration* keyboard-layout*) (let ((bootloader* grub-bootloader) (bootloader-targets (list "/dev/sdb")) ; TODO: generalize the target ) (bootloader-configuration (bootloader bootloader*) - (targets bootloader-targets)))) + (targets bootloader-targets) + (keyboard-layout keyboard-layout*)))) ;; string -> (file-system) (define-public (file-systems* host-name*) |