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

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