summaryrefslogtreecommitdiffstats
path: root/lenovo/z510.nix
blob: f1f5416b5be6a4f2a55e9487c6b10562192b633a (plain)
1
2
3
4
5
6
7
8
{ 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" ];
}