From 338792821aaa17ce11c93d48fc98a1a1feef291d Mon Sep 17 00:00:00 2001 From: Vincent Cui Date: Wed, 23 Sep 2020 08:01:20 +0200 Subject: [PATCH] add e470 configuration --- lenovo/thinkpad/e470/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lenovo/thinkpad/e470/default.nix diff --git a/lenovo/thinkpad/e470/default.nix b/lenovo/thinkpad/e470/default.nix new file mode 100644 index 0000000..a15b20a --- /dev/null +++ b/lenovo/thinkpad/e470/default.nix @@ -0,0 +1,11 @@ +{ config, lib, pkgs, ... }: + +{ + imports = [ + ../. + ../../../common/cpu/intel + ]; + + # see https://github.com/NixOS/nixpkgs/issues/69289 + boot.kernelPackages = pkgs.linuxPackages_latest; +}