mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-10 04:59:40 +01:00
Clarify doc-comments
This commit is contained in:
parent
ddebede974
commit
d1966ef874
1 changed files with 5 additions and 4 deletions
|
@ -24,10 +24,11 @@ in {
|
||||||
|
|
||||||
options.hardware.asus.zephyrus.ga402x = {
|
options.hardware.asus.zephyrus.ga402x = {
|
||||||
# Kernels earlier than 6.9 (possibly even earlier) tend to take 1-2 key-presses
|
# Kernels earlier than 6.9 (possibly even earlier) tend to take 1-2 key-presses
|
||||||
# to wake-up the internal keyboard after suspending (the ASUS N-KEY USB Device).
|
# to wake-up the internal keyboard after the device is suspended.
|
||||||
#
|
# Therefore, this option disables auto-suspend for the keyboard by default, but
|
||||||
# Therefore, this option disables suspend for the keyboard by default, but
|
|
||||||
# enables it for kernel 6.9.x onwards.
|
# enables it for kernel 6.9.x onwards.
|
||||||
|
#
|
||||||
|
# Note: the device name is "ASUS N-KEY Device".
|
||||||
keyboard.autosuspend.enable = (mkEnableOption "Enable auto-suspend on the internal USB keyboard (ASUS N-KEY Device) on Zephyrus GA402X"
|
keyboard.autosuspend.enable = (mkEnableOption "Enable auto-suspend on the internal USB keyboard (ASUS N-KEY Device) on Zephyrus GA402X"
|
||||||
) // { default = defaultAutosuspendEnable; };
|
) // { default = defaultAutosuspendEnable; };
|
||||||
};
|
};
|
||||||
|
@ -65,7 +66,7 @@ in {
|
||||||
services.udev = {
|
services.udev = {
|
||||||
extraRules = ''
|
extraRules = ''
|
||||||
# Disable auto-suspend for the ASUS N-KEY Device, i.e. USB Keyboard
|
# Disable auto-suspend for the ASUS N-KEY Device, i.e. USB Keyboard
|
||||||
# Otherwise on certain kernel-versions, it will tend to take 1-2 key-presses to wake-up after suspending
|
# Otherwise on certain kernel-versions, it will tend to take 1-2 key-presses to wake-up after the device suspends
|
||||||
ACTION=="add", SUBSYSTEM=="usb", TEST=="power/autosuspend", ATTR{idVendor}=="0b05", ATTR{idProduct}=="19b6", ATTR{power/autosuspend}="-1"
|
ACTION=="add", SUBSYSTEM=="usb", TEST=="power/autosuspend", ATTR{idVendor}=="0b05", ATTR{idProduct}=="19b6", ATTR{power/autosuspend}="-1"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue