Unverified Commit fbb577d3 authored by eyJhb's avatar eyJhb Committed by GitHub
Browse files

nixos/graphical-desktop: add sessions to pathsToLink (#411518)

Adds /share/xsessions and /share/wayland-sessions to pathsToLink,
otherwise some desktopManagers are not found by the displayManager
parent 70c42686
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -45,6 +45,11 @@ in
        nixos-icons # needed for gnome and pantheon about dialog, nixos-manual and maybe more
        xdg-utils
      ];
      # needed for some display managers to locate desktop manager sessions
      pathsToLink = [
        "/share/xsessions"
        "/share/wayland-sessions"
      ];
    };

    fonts.enableDefaultPackages = lib.mkDefault true;