nixos-hardware/lenovo/ideapad/z510/default.nix

10 lines
259 B
Nix
Raw Normal View History

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