From c34b4caad99f47e53364e2ee850f61cfb5418b91 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Sun, 18 Feb 2024 16:35:03 +0100 Subject: [PATCH] Fix keyboard layouts --- nixos/hosts/Tibo-NixFat/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/hosts/Tibo-NixFat/default.nix b/nixos/hosts/Tibo-NixFat/default.nix index 11aa47e..8d5f415 100644 --- a/nixos/hosts/Tibo-NixFat/default.nix +++ b/nixos/hosts/Tibo-NixFat/default.nix @@ -95,8 +95,12 @@ lidSwitchDocked = "ignore"; }; - # Touchpad - xserver.libinput.enable = true; + xserver = { + # Keyboard layout + layout = "us"; + xkbVariant = "altgr-intl"; + # Touchpad + libinput.enable = true; }; system.stateVersion = "23.05"; @@ -107,7 +111,6 @@ i18n.defaultLocale = "en_GB.UTF-8"; console = { - # font = "Lat2-Terminus16"; useXkbConfig = true; # use xkbOptions in tty. }; }