add Lenovo IdeaPad Z510 with suspend fix (#18)

This commit is contained in:
Данило Глинський (Danylo Hlynskyi) 2016-09-21 12:33:54 +03:00 committed by Emery Hemingway
parent bc241aeec7
commit cfd63d3b3e
1 changed files with 8 additions and 0 deletions

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" ];
}