summary refs log tree commit diff stats
path: root/system/settings/hardware/thinkpad.nix
blob: e4ddb829dbf1bd7a6a00906b8d17f1d25b822fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

{ boot.kernelModules = [ ];
  boot.blacklistedKernelModules = [ "thinkpad_ec" ];

  services.fwupd = {
    enable = true;
  };

  imports = [
    ./bare-metal.nix
    ./laptop.nix
  ];
}