mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-05 02:29:40 +01:00
15 lines
323 B
Nix
15 lines
323 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"
|
||
|
# ];
|
||
|
}
|