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
This commit is contained in:
eyJhb 2025-05-29 09:49:44 +02:00 committed by GitHub
parent 70c42686ac
commit fbb577d3c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;