From 95c8873c41ef57d820b027e16db0709c050579e1 Mon Sep 17 00:00:00 2001 From: Yegor Timoshenko Date: Sun, 24 Dec 2017 12:35:46 +0000 Subject: [PATCH] supermicro/a1sri-2758f: fix evaluation, drop old kernel notes --- supermicro/a1sri-2758f/default.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/supermicro/a1sri-2758f/default.nix b/supermicro/a1sri-2758f/default.nix index c16c093..3ffdc0c 100644 --- a/supermicro/a1sri-2758f/default.nix +++ b/supermicro/a1sri-2758f/default.nix @@ -1,20 +1,9 @@ # 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, lib, ... }: +{ pkgs, ... }: { - imports = [ ../lib/kernel-version.nix ]; - - environment.systemPackages = [ pkgs.ipmitool ]; boot.kernelModules = [ "ipmi_devintf" "ipmi_si" ]; - - 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''; - }; + environment.systemPackages = [ pkgs.ipmitool ]; }