diff options
Diffstat (limited to 'systems/ayase/system-configuration.scm')
-rw-r--r-- | systems/ayase/system-configuration.scm | 7 |
1 files changed, 5 insertions, 2 deletions
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 |