From 9b0a48a0cae8b93c64cc9f0da322fd72c8a70b34 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Fri, 26 Jul 2024 11:33:45 +0200 Subject: feat!(system): implement keyboard-layout --- systems/mcdowell.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'systems') 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* -- cgit v1.2.3