From 30d5a2216fc0091a62841154a96d6d91d5d2aac2 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sat, 21 Jan 2023 23:41:23 +0800 Subject: [PATCH] nixosTests.pantheon: nodes.machine.config -> nodes.machine Silence a warning: warning: Module argument `nodes.machine.config` is deprecated. Use `nodes.machine` instead. --- nixos/tests/pantheon.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/pantheon.nix b/nixos/tests/pantheon.nix index d24d9a92c0a6..0773fc0472aa 100644 --- a/nixos/tests/pantheon.nix +++ b/nixos/tests/pantheon.nix @@ -20,8 +20,8 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : enableOCR = true; testScript = { nodes, ... }: let - user = nodes.machine.config.users.users.alice; - bob = nodes.machine.config.users.users.bob; + user = nodes.machine.users.users.alice; + bob = nodes.machine.users.users.bob; in '' machine.wait_for_unit("display-manager.service")