nixosTests.vscodium: rename machines

Changed files
+6 -3
nixos
tests
+6 -3
nixos/tests/vscodium.nix
···
let
tests = {
-
vscodium-wayland = { pkgs, ... }: {
+
wayland = { pkgs, ... }: {
imports = [ ./common/wayland-cage.nix ];
services.cage.program = ''
···
fonts.fonts = with pkgs; [ dejavu_fonts ];
};
-
vscodium-xorg = { pkgs, ... }: {
+
xorg = { pkgs, ... }: {
imports = [ ./common/user-account.nix ./common/x11.nix ];
virtualisation.memorySize = 2047;
···
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 ];
};