nixos-hardware/supermicro/x10sll-f/default.nix

13 lines
317 B
Nix
Raw Normal View History

2016-02-08 13:02:19 +01:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ ipmitool ];
2016-02-08 13:02:19 +01:00
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"
# ];
}