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

10 lines
259 B
Nix
Raw Normal View History

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