hyprland: add hyprland-uwsm to passthru.providedSessions

Fix issue with displayManager `defaultSession` not accepting the string
since it's missing from the lookup it does with
`passthru.providedSessions`.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2026-01-09 10:59:41 -06:00
parent e12e33eb58
commit 4458925b0f
+1 -1
View File
@@ -214,7 +214,7 @@ customStdenv.mkDerivation (finalAttrs: {
'';
passthru = {
providedSessions = [ "hyprland" ];
providedSessions = [ "hyprland" ] ++ optionals withSystemd [ "hyprland-uwsm" ];
updateScript = ./update.sh;
};