From dd27c33037645ca78b48babb6e03328c691ebb12 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Wed, 20 Aug 2025 22:09:43 +0800 Subject: [PATCH] fix(nix): configure laptop keyboard --- nix/hosts/minji/sys.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nix/hosts/minji/sys.nix b/nix/hosts/minji/sys.nix index 936c919..978e572 100644 --- a/nix/hosts/minji/sys.nix +++ b/nix/hosts/minji/sys.nix @@ -135,6 +135,19 @@ autoRepeatInterval = 17; }; + services.keyd = { + enable = true; + keyboards.default = { + ids = [ "32ac:0012" ]; + settings = { + main = { + capslock = "leftshift"; + leftshift = "noop"; + }; + }; + }; + }; + # Window Manager programs.niri.enable = true; programs.xwayland.enable = true;