From 11535343697670de06ba73fbddf5ebfa8b9fc40e Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Sun, 5 Jan 2025 18:47:00 +0530 Subject: [PATCH] chore: Update syntax to new variant --- nixos/deoxys/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/deoxys/configuration.nix b/nixos/deoxys/configuration.nix index 68ad6ea7..d5d7614e 100644 --- a/nixos/deoxys/configuration.nix +++ b/nixos/deoxys/configuration.nix @@ -75,8 +75,10 @@ # Configure keymap in X11 services.xserver = { - layout = "us"; - xkbVariant = ""; + xkb = { + layout = "us"; + variant = ""; + }; }; security.sudo.wheelNeedsPassword = false;