summaryrefslogtreecommitdiffstats
path: root/supermicro
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-02-08 15:02:19 +0300
committerNikolay Amiantov <ab@fmap.me>2016-02-08 15:02:19 +0300
commitaff2f272ff106e0babcc297866ec971b80a9ef1b (patch)
tree7209d6e994fa3e93b80269c67d83f17f752fae29 /supermicro
parent4bd6934a050e4a047a470985c753b1362feaa290 (diff)
supermicro/x10sll-f: init
Diffstat (limited to 'supermicro')
-rw-r--r--supermicro/x10sll-f.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/supermicro/x10sll-f.nix b/supermicro/x10sll-f.nix
new file mode 100644
index 0000000..f60e6cf
--- /dev/null
+++ b/supermicro/x10sll-f.nix
@@ -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"
+ # ];
+}