feat(zigbee): force restart z2m
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-02-02 20:14:21 -05:00
parent b9402f4643
commit 2878943745

View file

@ -1,4 +1,6 @@
{...}: {
{lib, ...}: let
inherit (lib) mkForce;
in {
services = {
home-assistant = {
extraComponents = [
@ -44,4 +46,10 @@
};
};
};
# Make sure it stays running through SMLIGHT reboots
systemd.services."zigbee2mqtt".serviceConfig = {
Restart = mkForce "always";
StartLimitIntervalSec = 0;
};
}