You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
346 B

  1. { lib, ... }:
  2. {
  3. imports = [
  4. ../.
  5. ../../../common/pc/laptop/ssd
  6. <nixpkgs/nixos/modules/hardware/network/broadcom-43xx.nix>
  7. ];
  8. # USB subsystem wakes up MBP right after suspend unless we disable it.
  9. services.udev.extraRules = lib.mkDefault ''
  10. SUBSYSTEM=="pci", KERNEL=="0000:00:14.0", ATTR{power/wakeup}="disabled"
  11. '';
  12. }