1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-29 17:47:24 +02:00
nixos-hardware/lenovo/z510.nix
Данило Глинський (Danylo Hlynskyi) cfd63d3b3e add Lenovo IdeaPad Z510 with suspend fix (#18)
2016-09-21 11:33:54 +02:00

8 lines
260 B
Nix

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