2016-09-21 05:33:54 -04:00
|
|
|
{ config, pkgs, ... }:
|
2017-12-21 21:56:28 -05:00
|
|
|
|
2016-09-21 05:33:54 -04:00
|
|
|
{
|
|
|
|
hardware.cpu.intel.updateMicrocode = true;
|
2017-12-21 21:56:28 -05:00
|
|
|
|
2016-09-21 05:33:54 -04:00
|
|
|
# see https://github.com/NixOS/nixpkgs/issues/18356
|
|
|
|
# found buggy driver with method https://wiki.ubuntu.com/DebuggingKernelSuspend
|
|
|
|
boot.blacklistedKernelModules = [ "nouveau" ];
|
|
|
|
}
|