all repos — nixfiles @ bbc7e8f724bac6d6303cd73695e4a846609c978d

System and user configuration, managed by nix and home-manager

system/settings/hardware/thinkpad.nix (view raw)

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
  ];
}