1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-30 16:38:32 +02:00
nixos-hardware/supermicro/a1sri-2758f.nix

21 lines
558 B
Nix
Raw Normal View History

# 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-04-08 16:27:04 +02:00
{ pkgs, lib, ... }:
{
2016-04-08 16:27:04 +02:00
imports = [ ../lib/kernel-version.nix ];
2016-02-10 12:24:29 +01:00
environment.systemPackages = [ pkgs.ipmitool ];
boot.kernelModules = [ "ipmi_devintf" "ipmi_si" ];
2016-04-08 16:27:04 +02:00
kernelAtleast = lib.singleton
{ version = "4.4";
msg =
"ethernet driver may be buggy on older kernels, "+
''try 'networking.dhcpcd.extraConfig = "nolink";' if you encounter loss of link problems'';
};
}