stockholm/makefu/2configs/tp-x200.nix

15 lines
237 B
Nix
Raw Normal View History

2015-08-07 10:10:02 +00:00
{ config, lib, pkgs, ... }:
with lib;
{
imports = [ ./tp-x2x0.nix ];
2015-08-07 10:10:02 +00:00
boot = {
kernelModules = [ "tp_smapi" "msr" ];
extraModulePackages = [ config.boot.kernelPackages.tp_smapi ];
};
2015-08-13 15:13:42 +00:00
services.thinkfan.enable = true;
2015-08-07 10:10:02 +00:00
}