keyboard: remove config, too buggy

This commit is contained in:
Leonardo Eugênio 2024-08-08 00:26:35 -03:00
parent 981fe889ff
commit a2a82dbe7c
2 changed files with 0 additions and 26 deletions

View file

@ -22,7 +22,6 @@
./users.nix
./containers.nix
./network.nix
./keyboard.nix
../settings
];

View file

@ -1,25 +0,0 @@
{ pkgs, lib, ... }:
{
services.keyd = {
enable = true;
keyboards.default = {
ids = [ "*" ];
settings = {
"main" = {
# Some programs don't respect colemaks capslock bind, so we force it here
"capslock" = "backspace";
# keyd has incorrect defaults :/
"leftshift" = "leftshift";
"rightshift" = "rightshift";
"leftalt" = "leftalt";
"rightalt" = "rightalt";
"leftcontrol" = "leftcontrol";
"rightcontrol" = "rightcontrol";
"leftmeta" = "leftmeta";
"rightmeta" = "rightmeta";
};
};
};
};
}