Skip to content

Commit 7e9bd2d

Browse files
committed
nixos/tests/flatpak: explicitly disable gdm to fix eval
The switch to lightdm as default display manager in #30890 broke eval of the flatpak test. Since the test uses the auto display manager (lightdm), gdm must now be explicitly disabled.
1 parent 15e6e1f commit 7e9bd2d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

nixos/tests/flatpak.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import ./make-test.nix ({ pkgs, ... }:
1010
machine = { pkgs, ... }: {
1111
imports = [ ./common/x11.nix ];
1212
services.xserver.desktopManager.gnome3.enable = true; # TODO: figure out minimal environment where the tests work
13+
# common/x11.nix enables the auto display manager (lightdm)
14+
services.xserver.displayManager.gdm.enable = false;
1315
environment.gnome3.excludePackages = pkgs.gnome3.optionalPackages;
1416
services.flatpak.enable = true;
1517
environment.systemPackages = with pkgs; [ gnupg gnome-desktop-testing ostree python2 ];

0 commit comments

Comments
 (0)