use keyd to disable pageup/pagedown keys
thanks dell 😡
This commit is contained in:
parent
a724d1ecc8
commit
96c839e8eb
2 changed files with 17 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
in {
|
||||
imports = [
|
||||
./dbus.nix
|
||||
./keyd.nix
|
||||
./pipewire.nix
|
||||
./udev.nix
|
||||
./ssh.nix
|
||||
|
|
16
hosts/skipper/services/keyd.nix
Normal file
16
hosts/skipper/services/keyd.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
_: {
|
||||
services.keyd = {
|
||||
enable = true;
|
||||
keyboards = {
|
||||
builtin = {
|
||||
ids = [ "0001:0001" ];
|
||||
settings = {
|
||||
main = {
|
||||
pageup = "noop";
|
||||
pagedown = "noop";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue