1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 10:33:33 +02:00
nixos-hardware/supermicro/x10sll-f/default.nix
Yegor Timoshenko 3743ae21f5
treewide: only ever set unmergable options via lib.mkDefault
Also extract documentation from raspberry-pi/2/ profile.
2017-12-24 15:13:25 +00:00

13 lines
317 B
Nix

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