diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index d49853825aa..3e45b28e6a1 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -94,7 +94,7 @@ in gitolite = handleTest ./gitolite.nix {}; gjs = handleTest ./gjs.nix {}; gnome3-xorg = handleTestOn ["x86_64-linux"] ./gnome3-xorg.nix {}; # libsmbios is unsupported on aarch64 - gnome3-gdm = handleTestOn ["x86_64-linux"] ./gnome3-gdm.nix {}; # libsmbios is unsupported on aarch64 + gnome3 = handleTestOn ["x86_64-linux"] ./gnome3.nix {}; # libsmbios is unsupported on aarch64 gocd-agent = handleTest ./gocd-agent.nix {}; gocd-server = handleTest ./gocd-server.nix {}; google-oslogin = handleTest ./google-oslogin {}; diff --git a/nixos/tests/gnome3-gdm.nix b/nixos/tests/gnome3.nix similarity index 98% rename from nixos/tests/gnome3-gdm.nix rename to nixos/tests/gnome3.nix index c2808d87d99..da95105aeab 100644 --- a/nixos/tests/gnome3-gdm.nix +++ b/nixos/tests/gnome3.nix @@ -1,5 +1,5 @@ import ./make-test.nix ({ pkgs, ...} : { - name = "gnome3-gdm"; + name = "gnome3"; meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ lethalman ]; }; @@ -18,6 +18,7 @@ import ./make-test.nix ({ pkgs, ...} : { user = "alice"; }; }; + services.xserver.desktopManager.gnome3.enable = true; virtualisation.memorySize = 1024;