nixosTests.vscodium: rename machines

This commit is contained in:
Patrick Hilhorst 2021-11-19 23:04:26 +01:00
parent 9e71014ede
commit 2a04ae8b12
No known key found for this signature in database
GPG Key ID: 3BB083304DADC0FF

View File

@ -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 ];
};