Merge pull request #1 from abbradar/patch-1

supermicro/x10sll-f: init
This commit is contained in:
Emery Hemingway 2016-02-08 15:26:54 +01:00
commit 3382ec5237
1 changed files with 14 additions and 0 deletions

14
supermicro/x10sll-f.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
ipmitool
];
boot.kernelModules = [ "jc42" "ipmi_devintf" "ipmi_si" "tpm_rng" ];
# services.cron.systemCronJobs = [
# # Reset 5-minute watchdog timer every minute
# "* * * * * ${pkgs.ipmitool}/bin/ipmitool raw 0x30 0x97 1 5"
# ];
}