1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-23 03:19:42 +01:00

supermicro/x10sll-f: init

This commit is contained in:
Nikolay Amiantov 2016-02-08 15:02:19 +03:00
parent 4bd6934a05
commit aff2f272ff

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"
# ];
}