mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
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:
parent
70c42686ac
commit
fbb577d3c5
1 changed files with 5 additions and 0 deletions
|
@ -45,6 +45,11 @@ in
|
||||||
nixos-icons # needed for gnome and pantheon about dialog, nixos-manual and maybe more
|
nixos-icons # needed for gnome and pantheon about dialog, nixos-manual and maybe more
|
||||||
xdg-utils
|
xdg-utils
|
||||||
];
|
];
|
||||||
|
# needed for some display managers to locate desktop manager sessions
|
||||||
|
pathsToLink = [
|
||||||
|
"/share/xsessions"
|
||||||
|
"/share/wayland-sessions"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
fonts.enableDefaultPackages = lib.mkDefault true;
|
fonts.enableDefaultPackages = lib.mkDefault true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue