add Lenovo IdeaPad Z510 with suspend fix

This commit is contained in:
danbst 2016-09-19 02:27:01 +03:00
parent bc241aeec7
commit a96a98cf62

8
lenovo/z510.nix Normal file
View file

@ -0,0 +1,8 @@
{ 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" ];
}