mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 04:35:38 +00:00
10 lines
209 B
Nix
10 lines
209 B
Nix
{ ... }: {
|
|
|
|
# Prevent wake from keyboard
|
|
powerManagement.powerDownCommands = ''
|
|
echo disabled > /sys/bus/usb/devices/1-6/power/wakeup
|
|
echo disabled > /sys/bus/usb/devices/1-8/power/wakeup
|
|
'';
|
|
|
|
}
|