From 8eca09fd73c9f1c26d11f792e6029f87dff8e66d Mon Sep 17 00:00:00 2001 From: Nickolaj Jepsen Date: Sat, 27 Dec 2025 11:13:06 +0100 Subject: [PATCH] feat(keyd): rebind caps as backspace --- modules/system/keyd.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/system/keyd.nix b/modules/system/keyd.nix index e7108c9..ce1a872 100644 --- a/modules/system/keyd.nix +++ b/modules/system/keyd.nix @@ -18,6 +18,15 @@ }; }; }; + keyboards.default = { + ids = ["*"]; + settings = { + main = { + # Rebind capslock to backspace for all keyboards + capslock = "backspace"; + }; + }; + }; }; }; }