about summary refs log tree commit diff
path: root/modules/nixos-hardware/apple/macbook-pro/12-1/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos-hardware/apple/macbook-pro/12-1/README.md')
-rw-r--r--modules/nixos-hardware/apple/macbook-pro/12-1/README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/nixos-hardware/apple/macbook-pro/12-1/README.md b/modules/nixos-hardware/apple/macbook-pro/12-1/README.md
new file mode 100644
index 000000000000..6618dc9e5723
--- /dev/null
+++ b/modules/nixos-hardware/apple/macbook-pro/12-1/README.md
@@ -0,0 +1,15 @@
+# MacBook Pro 12,1
+
+## Wireless won't get reconnected after resume/hibernate
+
+The wifi driver is unloaded before suspend/hibernate to workaround driver issues.
+This means it might be required to restart your wifi deamon i.e. wpa_supplicant:
+
+```nix
+powerManagement.powerUpCommands = ''
+  ${pkgs.systemd}/bin/systemctl restart wpa_supplicant.service
+'';
+};
+```
+
+You can apply this to your network management software of choice.