mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Add ipmi_watchdog to blowhole
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
cbc32aef09
commit
361e6b2065
|
@ -1,7 +1,10 @@
|
|||
{ config, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
boot = {
|
||||
supportedFilesystems = ["zfs"];
|
||||
kernelParams = [
|
||||
"ipmi_watchdog.timeout=300"
|
||||
];
|
||||
initrd.availableKernelModules = [
|
||||
"xhci_pci"
|
||||
"ahci"
|
||||
|
@ -10,9 +13,17 @@
|
|||
"sd_mod"
|
||||
"nvme"
|
||||
];
|
||||
initrd.kernelModules = [
|
||||
"ipmi_watchdog"
|
||||
];
|
||||
blacklistedKernelModules = [
|
||||
"iTCO_wdt"
|
||||
];
|
||||
zfs.enableUnstable = true;
|
||||
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs.ipmitool ];
|
||||
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue