summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-10-02 10:38:57 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-10-02 10:38:57 +0200
commit9ddaed9a1bcc1d5e5b8af6817365d31641dfcb0c (patch)
treef1deb3e7db58ce077cb746a21a4af0e6fcbae60a /systems
parent886f7c790cd56356d9c85dbaf8910a5139b49337 (diff)
fix(akashi): use the correct structure of keyboard-layout for bootloader
Diffstat (limited to 'systems')
-rw-r--r--systems/akashi.scm6
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*))