aboutsummaryrefslogtreecommitdiff
path: root/nixos/tests/gnome3.nix
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2018-07-28 18:23:35 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-08-01 19:14:33 +0200
commite8e0edd95ce05d2317c18f9054e7b9ba4b76ec6f (patch)
treeff0bd1256a0ce2b0c9d9d254312d6a6574da52a5 /nixos/tests/gnome3.nix
parentefa27d33cf321dda8917445c207c88a994c4f272 (diff)
nixos/tests/gnome3: Explicitly set default desktopManager
Sessions from `extraSessionFilePackages` isn't picked automatically as the default session.
Diffstat (limited to 'nixos/tests/gnome3.nix')
-rw-r--r--nixos/tests/gnome3.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/tests/gnome3.nix b/nixos/tests/gnome3.nix
index 3f51d04163a4..af2404bf530c 100644
--- a/nixos/tests/gnome3.nix
+++ b/nixos/tests/gnome3.nix
@@ -15,6 +15,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";
virtualisation.memorySize = 1024;
};