use keyd to disable pageup/pagedown keys

thanks dell 😡
This commit is contained in:
Adithya 2023-10-15 12:51:48 +05:30
parent a724d1ecc8
commit 96c839e8eb
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
2 changed files with 17 additions and 0 deletions

View file

@ -3,6 +3,7 @@
in {
imports = [
./dbus.nix
./keyd.nix
./pipewire.nix
./udev.nix
./ssh.nix

View file

@ -0,0 +1,16 @@
_: {
services.keyd = {
enable = true;
keyboards = {
builtin = {
ids = [ "0001:0001" ];
settings = {
main = {
pageup = "noop";
pagedown = "noop";
};
};
};
};
};
}