From 5efe51ccc267095d4c43fc7bab6004dd034746a7 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 6 Aug 2019 18:24:21 -0400 Subject: [PATCH] nixosTests.gnome3: rename from gnome3-gdm The actual only difference from the gnome3-xorg test is that this tests the wayland session. It's also more accurate to call it just "gnome3" since wayland is default here. --- nixos/tests/all-tests.nix | 2 +- nixos/tests/{gnome3-gdm.nix => gnome3.nix} | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename nixos/tests/{gnome3-gdm.nix => gnome3.nix} (98%) 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;