mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-06 01:48:50 +08:00
17 lines
343 B
Nix
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
|
|
'';
|
|
}
|