summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/t440s/default.nix
blob: c40ad90f9b3d7a6a276a144af4dc84b1ba61a484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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" ];
  };
}