summaryrefslogtreecommitdiffstats
path: root/lenovo
diff options
context:
space:
mode:
authorTrolli Schmittlauch <schmittlauch@users.noreply.github.com>2018-12-03 00:25:43 +0100
committerJörg Thalheim <Mic92@users.noreply.github.com>2018-12-02 23:25:43 +0000
commit1e2c130d38d72860660474c36207b099c519cb6a (patch)
tree262d987293133f0e0c1fb39338d24ed05e8111ef /lenovo
parent99cdc883064ac5a1b9e189d3500a809616e79765 (diff)
add basic support for Lenovo Thinkpad T440s (#83)
This adds basic support for the Thinkpad T440s, based on the work done for the T440p. The expression enables: - microcode updates - trackpoint support - kernel module for battery level management
Diffstat (limited to 'lenovo')
-rw-r--r--lenovo/thinkpad/t440s/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/lenovo/thinkpad/t440s/default.nix b/lenovo/thinkpad/t440s/default.nix
new file mode 100644
index 0000000..c40ad90
--- /dev/null
+++ b/lenovo/thinkpad/t440s/default.nix
@@ -0,0 +1,14 @@
+{ config, lib, pkgs, ... }:
+
+{
+ imports = [
+ ../.
+ ../../../common/cpu/intel
+ ../../../common/pc/laptop/acpi_call.nix
+ ];
+
+ boot = {
+ # TODO: probably enable tcsd? Is this line necessary?
+ kernelModules = [ "tpm-rng" ];
+ };
+}