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