summaryrefslogtreecommitdiff
path: root/systems
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-26 11:33:45 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-26 14:44:27 +0200
commit9b0a48a0cae8b93c64cc9f0da322fd72c8a70b34 (patch)
treea05abde46b2d1bfb387e86bc668e6cf778e40cce /systems
parent89b9a62b4bdc7c4113e9b4859617f0033663dc85 (diff)
feat!(system): implement keyboard-layout
Diffstat (limited to 'systems')
-rw-r--r--systems/mcdowell.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm
index 7994ac8..323e2ec 100644
--- a/systems/mcdowell.scm
+++ b/systems/mcdowell.scm
@@ -1,6 +1,7 @@
(define-module (systems mcdowell)
#:use-module (gnu services) ; service
#:use-module (gnu services guix) ; guix-home-service-type
+ #:use-module (gnu system keyboard) ; keyboard-layout
#:use-module (machines portable-bios) ; bootloader-configuration*
; file-systems*
; firmware*
@@ -27,9 +28,11 @@
(guix-home (service guix-home-service-type
home-environments))
+ (keyboard-layout* (keyboard-layout "pl"))
(services* (list guix-home)))
(%suweren-operating-system kernel*
- bootloader-configuration*
+ (bootloader-configuration* keyboard-layout*)
+ keyboard-layout*
initrd*
firmware*
host-name*