2017-12-24 07:16:10 -05:00
|
|
|
{ lib, ... }:
|
2017-09-24 10:19:52 -04:00
|
|
|
|
2017-12-24 07:16:10 -05:00
|
|
|
{
|
|
|
|
imports = [
|
2017-12-24 07:17:37 -05:00
|
|
|
../../.
|
2017-12-24 07:16:10 -05:00
|
|
|
<nixpkgs/nixos/modules/hardware/network/broadcom-43xx.nix>
|
|
|
|
];
|
2017-09-24 10:19:52 -04:00
|
|
|
|
2017-12-24 07:16:10 -05:00
|
|
|
# USB subsystem wakes up MBP right after suspend unless we disable it.
|
|
|
|
services.udev.extraRules = lib.mkDefault ''
|
2017-09-24 10:19:52 -04:00
|
|
|
SUBSYSTEM=="pci", KERNEL=="0000:00:14.0", ATTR{power/wakeup}="disabled"
|
|
|
|
'';
|
|
|
|
}
|