2017-09-03 17:25:33 -04:00
|
|
|
# NOTE: this doesn't inherit from the `general.nix`
|
|
|
|
# as z510 is not a ThinkPad
|
|
|
|
|
2016-09-21 05:33:54 -04:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
|
|
|
|
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/18356
|
|
|
|
# found buggy driver with method https://wiki.ubuntu.com/DebuggingKernelSuspend
|
|
|
|
boot.blacklistedKernelModules = [ "nouveau" ];
|
|
|
|
}
|