From ee758fdcdbbcae14d7a50d1809c1b225545d665f Mon Sep 17 00:00:00 2001 From: aszlig Date: Wed, 2 Aug 2023 04:10:01 +0200 Subject: profiles/base: Fix XKB Dvorak keyboard layout The right XKB configuration should be using "us" as its layout and "dvorak" as the variant, because there are other such variants such as "it", "fr" or "de" and just using "dvorak" as the layout has very long been an alias that now has been removed[1] in the latest version of xkeyboard-config. [1]: https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/commit/470ad2cd8fea84d7210377161d86b31999bb5ea6 Signed-off-by: aszlig --- modules/user/aszlig/profiles/base.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/user/aszlig/profiles/base.nix b/modules/user/aszlig/profiles/base.nix index 81b10112..eb7a78f0 100644 --- a/modules/user/aszlig/profiles/base.nix +++ b/modules/user/aszlig/profiles/base.nix @@ -36,7 +36,8 @@ in { networking.useNetworkd = true; networking.useDHCP = false; - services.xserver.layout = "dvorak"; + services.xserver.layout = "us"; + services.xserver.xkbVariant = "dvorak"; console.useXkbConfig = true; console.font = "lat9w-16"; -- cgit 1.4.1