supermicro/x10sll-f: init

This commit is contained in:
Nikolay Amiantov 2016-02-08 15:02:19 +03:00
parent 4bd6934a05
commit aff2f272ff
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"
# ];
}