1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 07:28:32 +02:00
nixos-hardware/supermicro/a1sri-2758f.nix
2016-02-10 12:25:17 +01:00

17 lines
513 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, ... }:
{
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.
networking.dhcpcd.extraConfig = "nolink";
}