1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-30 16:38:32 +02:00
nixos-hardware/lenovo/ideapad/z510.nix
2017-12-22 02:56:28 +00:00

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