From 05a6d6cc6947aa30ad9e1ff02a0b863d1958fcd9 Mon Sep 17 00:00:00 2001 From: zephrynis Date: Tue, 28 Jul 2026 00:51:58 +0100 Subject: [PATCH] hosts: set UK keymap and locale for TTY and greeter console.keyMap = uk and xkb.layout = gb so the TTYs and SDDM greeter match the UK layout (Hyprland's own layout is set in home). Co-Authored-By: Claude Opus 4.8 (1M context) --- hosts/nixos-pc/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/nixos-pc/default.nix b/hosts/nixos-pc/default.nix index 4eb5d30..38119f4 100644 --- a/hosts/nixos-pc/default.nix +++ b/hosts/nixos-pc/default.nix @@ -50,6 +50,8 @@ time.timeZone = "Europe/London"; i18n.defaultLocale = "en_GB.UTF-8"; + console.keyMap = "uk"; # TTYs + services.xserver.xkb.layout = "gb"; # SDDM greeter / X11; Hyprland is set in home/zephrynis.nix # Set to the NixOS release of the ISO used at install time; never change afterwards. system.stateVersion = "26.05";