mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
d977cf26de
There are several significant differences between ThinkPads and the other Lenovo models, so this structure must be more precise
11 lines
341 B
Nix
11 lines
341 B
Nix
# 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" ];
|
|
}
|