summaryrefslogtreecommitdiffstats
path: root/lenovo
diff options
context:
space:
mode:
Diffstat (limited to 'lenovo')
-rw-r--r--lenovo/z510.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/lenovo/z510.nix b/lenovo/z510.nix
new file mode 100644
index 0000000..f1f5416
--- /dev/null
+++ b/lenovo/z510.nix
@@ -0,0 +1,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" ];
+}