commit 43c4c466b928fc96e64495ad18085e628d9e377f
parent 96df2b0ea33367bdca52f780df2bb5bad659f9bf
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Mon, 7 Jul 2025 16:46:44 +0200
parent 96df2b0ea33367bdca52f780df2bb5bad659f9bf
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Mon, 7 Jul 2025 16:46:44 +0200
config/nixos/modules/services/keyd: add new keyboard
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/config/nixos/modules/services/keyd.nix b/config/nixos/modules/services/keyd.nix @@ -4,6 +4,7 @@ lib, ... }: + let inherit (lib) types; cfg = lib.getAttrFromPath povSelf config; @@ -43,6 +44,13 @@ in "rightcontrol" = "sysrq"; }; }; + BlackShark = { + ids = [ "0c45:8006:d510c59d" ]; + settings.main = { + "leftcontrol" = "leftalt"; + "leftalt" = "leftcontrol"; + }; + }; }; }; };