summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/t440p/default.nix
diff options
context:
space:
mode:
authorYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 23:21:05 +0000
committerYegor Timoshenko <yegortimoshenko@gmail.com>2017-12-24 23:21:05 +0000
commit5407ba7a5242062edeaf3dbcd42d533b9ff96023 (patch)
tree796a83420dba49ebe0b5c81a52a436856fb3b03a /lenovo/thinkpad/t440p/default.nix
parentb63e0eb372b00d4cb5ca552ae9583bdb593f07dd (diff)
treewide: abstract away common configs into common/
Diffstat (limited to 'lenovo/thinkpad/t440p/default.nix')
-rw-r--r--lenovo/thinkpad/t440p/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/lenovo/thinkpad/t440p/default.nix b/lenovo/thinkpad/t440p/default.nix
index ddf6bd8..464c874 100644
--- a/lenovo/thinkpad/t440p/default.nix
+++ b/lenovo/thinkpad/t440p/default.nix
@@ -1,7 +1,10 @@
{ config, lib, pkgs, ... }:
{
- imports = [ ../. ];
+ imports = [
+ ../.
+ ../../../common/cpu/intel
+ ];
boot = {
extraModprobeConfig = lib.mkDefault ''
@@ -9,6 +12,4 @@
'';
kernelModules = [ "tpm-rng" ];
};
-
- services.xserver.videoDrivers = [ "intel" ];
}