diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-05-23 02:57:18 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-05-23 02:57:18 +0200 |
commit | f3197c8bfd8ec92bf3c2ad134b772d7790233c1b (patch) | |
tree | a14efffe5e41a781fb80db2ab9afcca53d061de8 | |
parent | 6119b4b57d432de09dcc50ea1460b63d47f169ab (diff) |
ayase: attempt another keyboard-layout definition
-rw-r--r-- | systems/ayase/guix-ayase.org | 7 | ||||
-rw-r--r-- | systems/ayase/system-configuration.scm | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/systems/ayase/guix-ayase.org b/systems/ayase/guix-ayase.org index 9fd2acc..f17f503 100644 --- a/systems/ayase/guix-ayase.org +++ b/systems/ayase/guix-ayase.org @@ -25,6 +25,9 @@ (device (uuid "B4FB-CBD9" 'fat32)) (type "vfat"))) + (define keyboard + (keyboard-layout "pl")) + (define marek-account (user-account (name "marek") (comment "Marek Paśnikowski") @@ -55,7 +58,7 @@ (define bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (targets (list "/boot/efi")) - (keyboard-layout (keyboard-layout "pl")))) + (keyboard-layout keyboard))) (define main-swap (swap-space (target (uuid "cc6bbf7c-e42a-4ac3-a9ae-3b14d3b4b841")))) @@ -74,7 +77,7 @@ ;; PUBLIC (operating-system (bootloader bootloader) - (keyboard-layout (keyboard-layout "pl")) + (keyboard-layout keyboard) (host-name "ayase") (file-systems (append %base-file-systems ;; %distribution-file-systems diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm index 933740a..840246b 100644 --- a/systems/ayase/system-configuration.scm +++ b/systems/ayase/system-configuration.scm @@ -15,6 +15,9 @@ (device (uuid "B4FB-CBD9" 'fat32)) (type "vfat"))) +(define keyboard + (keyboard-layout "pl")) + (define marek-account (user-account (name "marek") (comment "Marek Paśnikowski") @@ -45,7 +48,7 @@ (define bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (targets (list "/boot/efi")) - (keyboard-layout (keyboard-layout "pl")))) + (keyboard-layout keyboard))) (define main-swap (swap-space (target (uuid "cc6bbf7c-e42a-4ac3-a9ae-3b14d3b4b841")))) @@ -64,7 +67,7 @@ ;; PUBLIC (operating-system (bootloader bootloader) - (keyboard-layout (keyboard-layout "pl")) + (keyboard-layout keyboard) (host-name "ayase") (file-systems (append %base-file-systems ;; %distribution-file-systems |