summaryrefslogtreecommitdiffstats
path: root/lenovo/ideapad/z510.nix
blob: 4c45cac8f67f47ee334dbaea8dd073747511be7c (plain)
1
2
3
4
5
6
7
8
9
10
11
# NOTE: this doesn't inherit from the `general.nix`
# as z510 is not a ThinkPad

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