about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2018-12-09 13:19:42 +0100
committerTor Hedin Brønner <torhedinbronner@gmail.com>2018-12-10 10:36:25 +0100
commit116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a (patch)
treede65e982c47302d89a7264ef6e3a5da428de10e9 /nixos
parent3c0e70402f54aa05f47cf2b4266f70b4a10d3aef (diff)
downloadnixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.tar
nixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.tar.gz
nixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.tar.bz2
nixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.tar.lz
nixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.tar.xz
nixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.tar.zst
nixlib-116c16d9e234a4f1c3ef3bfa29f46a105eef8f9a.zip
nixos/tests/gnome3: select X11 gnome shell explicitely
This isn't strictly necessary yet as LightDM doesn't read the wayland sessions,
but there's no harm in being explicit.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/gnome3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/gnome3.nix b/nixos/tests/gnome3.nix
index 3f0368592b8d..32c6ab226e34 100644
--- a/nixos/tests/gnome3.nix
+++ b/nixos/tests/gnome3.nix
@@ -16,7 +16,7 @@ import ./make-test.nix ({ pkgs, ...} : {
       services.xserver.displayManager.lightdm.autoLogin.enable = true;
       services.xserver.displayManager.lightdm.autoLogin.user = "alice";
       services.xserver.desktopManager.gnome3.enable = true;
-      services.xserver.desktopManager.default = "gnome";
+      services.xserver.desktopManager.default = "gnome-xorg";
 
       virtualisation.memorySize = 1024;
     };