From 4458925b0f1aab5c5d5da39686453ddcc07b79ac Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 9 Jan 2026 10:59:41 -0600 Subject: [PATCH] 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 --- pkgs/by-name/hy/hyprland/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/hy/hyprland/package.nix b/pkgs/by-name/hy/hyprland/package.nix index 6a2356b951d2..6fb149c7fb6f 100644 --- a/pkgs/by-name/hy/hyprland/package.nix +++ b/pkgs/by-name/hy/hyprland/package.nix @@ -214,7 +214,7 @@ customStdenv.mkDerivation (finalAttrs: { ''; passthru = { - providedSessions = [ "hyprland" ]; + providedSessions = [ "hyprland" ] ++ optionals withSystemd [ "hyprland-uwsm" ]; updateScript = ./update.sh; };