From 6267a995ec2abd5c4a9f977851e54ffaa7080977 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 3 Feb 2022 01:37:20 +0100 Subject: nixos/home-assistant: drop --runner flag Home Assistant now always emits exit code 100 when a restart is requested, making this option redundant. --- nixos/modules/services/misc/home-assistant.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/home-assistant.nix b/nixos/modules/services/misc/home-assistant.nix index ac4c0222aac..fc8ce08b2e1 100644 --- a/nixos/modules/services/misc/home-assistant.nix +++ b/nixos/modules/services/misc/home-assistant.nix @@ -329,7 +329,7 @@ in { "zwave_js" ]; in { - ExecStart = "${package}/bin/hass --runner --config '${cfg.configDir}'"; + ExecStart = "${package}/bin/hass --config '${cfg.configDir}'"; ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; User = "hass"; Group = "hass"; -- cgit 1.4.1