Files
nixos-hardware/apple/macbook-pro/11-4/default.nix
2025-08-15 13:16:50 +02:00

17 lines
343 B
Nix

{ lib, config, pkgs, modulesPath, ... }:
{
imports = [
../.
../../../common/cpu/intel/haswell
../../../common/pc/ssd
"${modulesPath}/hardware/network/broadcom-43xx.nix"
];
hardware.graphics.enable = lib.mkDefault true;
# Faster wakeups from suspend
systemd.sleep.extraConfig = ''
MemorySleepMode=s2idle
'';
}