From b5074f5d14102a6d91e40e48c30ae9d7fe9662b3 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 12 Feb 2025 16:11:48 +0100 Subject: [PATCH] set fr keyboard layout in console --- hosts/haze/boot.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/haze/boot.nix b/hosts/haze/boot.nix index 6ea69ef..a0d0d33 100644 --- a/hosts/haze/boot.nix +++ b/hosts/haze/boot.nix @@ -5,4 +5,15 @@ }; efi.canTouchEfiVariables = true; }; + + console = { + earlySetup = true; + useXkbConfig = true; + }; + + services = { + xserver = { + xkb.layout = "fr"; + }; + }; }