From 2a04ae8b125285ed980722614e75e220ee9847c8 Mon Sep 17 00:00:00 2001 From: Patrick Hilhorst Date: Fri, 19 Nov 2021 23:04:26 +0100 Subject: nixosTests.vscodium: rename machines --- nixos/tests/vscodium.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'nixos/tests') diff --git a/nixos/tests/vscodium.nix b/nixos/tests/vscodium.nix index e217c1ec80f9..565296a5a738 100644 --- a/nixos/tests/vscodium.nix +++ b/nixos/tests/vscodium.nix @@ -1,6 +1,6 @@ let tests = { - vscodium-wayland = { pkgs, ... }: { + wayland = { pkgs, ... }: { imports = [ ./common/wayland-cage.nix ]; services.cage.program = '' @@ -11,7 +11,7 @@ let fonts.fonts = with pkgs; [ dejavu_fonts ]; }; - vscodium-xorg = { pkgs, ... }: { + xorg = { pkgs, ... }: { imports = [ ./common/user-account.nix ./common/x11.nix ]; virtualisation.memorySize = 2047; @@ -25,7 +25,10 @@ let mkTest = name: machine: import ./make-test-python.nix ({ pkgs, ... }: { - inherit name machine; + inherit name; + + nodes = { "${name}" = machine; }; + meta = with pkgs.lib.maintainers; { maintainers = [ synthetica turion ]; }; -- cgit 1.4.1