nixosTests.xfce: silence a deprecation warning

trace: warning: Module argument `nodes.machine.config` is deprecated. Use `nodes.machine` instead.
This commit is contained in:
Bobby Rong 2023-03-15 16:37:31 +08:00
parent e5fdb2fce8
commit 49ca01bf9d
No known key found for this signature in database

View File

@ -26,7 +26,7 @@ import ./make-test-python.nix ({ pkgs, ...} : {
};
testScript = { nodes, ... }: let
user = nodes.machine.config.users.users.alice;
user = nodes.machine.users.users.alice;
in ''
machine.wait_for_x()
machine.wait_for_file("${user.home}/.Xauthority")