mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
9 lines
271 B
Nix
9 lines
271 B
Nix
# http://www.supermicro.com/products/motherboard/Atom/X10/A1SRi-2758F.cfm
|
|
# This board contains a TPM header, but you must supply your own module.
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
boot.kernelModules = [ "ipmi_devintf" "ipmi_si" ];
|
|
environment.systemPackages = [ pkgs.ipmitool ];
|
|
}
|