diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-02 10:38:57 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-10-02 10:38:57 +0200 |
commit | 9ddaed9a1bcc1d5e5b8af6817365d31641dfcb0c (patch) | |
tree | f1deb3e7db58ce077cb746a21a4af0e6fcbae60a /systems | |
parent | 886f7c790cd56356d9c85dbaf8910a5139b49337 (diff) |
fix(akashi): use the correct structure of keyboard-layout for bootloader
Diffstat (limited to 'systems')
-rw-r--r-- | systems/akashi.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/systems/akashi.scm b/systems/akashi.scm index 7613342..e909b28 100644 --- a/systems/akashi.scm +++ b/systems/akashi.scm @@ -11,7 +11,7 @@ (mount-point "/") (device "akashi-root"))))) -(define keyboard-layout +(define keyboard-layout* ((@ (gnu system keyboard) keyboard-layout) "pl")) @@ -46,8 +46,8 @@ (timezone* "Europe/Warsaw")) ((@ (gnu system) operating-system) (kernel linux-libre) - (bootloader (bootloader-configuration* "pl")) - (keyboard-layout keyboard-layout) + (bootloader (bootloader-configuration* keyboard-layout*)) + (keyboard-layout keyboard-layout*) (host-name host-name*) (file-systems (file-systems)) (swap-devices (swap-devices* host-name*)) |