From f98462a27d097f1b8397ed07ca545b26009bf6c9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 20 Feb 2023 17:59:50 +0100 Subject: [PATCH] nixos/tests/home-assistant: Resolve deprecation warning > trace: warning: Module argument `nodes.hass.config` is deprecated. Use `nodes.hass` instead. --- nixos/tests/home-assistant.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/home-assistant.nix b/nixos/tests/home-assistant.nix index aec4784e9c5f..8585cb3585fe 100644 --- a/nixos/tests/home-assistant.nix +++ b/nixos/tests/home-assistant.nix @@ -112,7 +112,7 @@ in { }; testScript = { nodes, ... }: let - system = nodes.hass.config.system.build.toplevel; + system = nodes.hass.system.build.toplevel; in '' import json