1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00

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

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