2016-02-08 12:24:29 +01:00
|
|
|
# http://www.supermicro.com/products/motherboard/Atom/X10/A1SRi-2758F.cfm
|
2016-02-10 12:24:29 +01:00
|
|
|
#
|
|
|
|
# This board contains a TPM header, but you must supply your own module.
|
|
|
|
#
|
2016-02-08 12:24:29 +01:00
|
|
|
|
2016-02-10 12:24:29 +01:00
|
|
|
{ pkgs, ... }:
|
2016-02-08 12:24:29 +01:00
|
|
|
|
|
|
|
{
|
2016-02-10 12:24:29 +01:00
|
|
|
environment.systemPackages = [ pkgs.ipmitool ];
|
|
|
|
boot.kernelModules = [ "ipmi_devintf" "ipmi_si" ];
|
|
|
|
|
|
|
|
# The Linux NIC driver seems to have faulty link state reporting
|
|
|
|
# that causes dhcpcd to release every few seconds, which is
|
|
|
|
# more annoying than not releasing when a cable is unplugged.
|
2016-02-08 12:24:29 +01:00
|
|
|
networking.dhcpcd.extraConfig = "nolink";
|
|
|
|
}
|