From 81e7498ec27156ee97aabba6fe4993412d98d1ab Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 9 Jan 2026 16:15:59 -0600 Subject: [PATCH] nix: add hyprland-uwsm to passthru.providedSessions Fix issue with displayManager `defaultSession` not accepting the stringsince it's missing from the lookup it does with`passthru.providedSessions`. --- nix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/default.nix b/nix/default.nix index 73d05f56..adbee152 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -230,7 +230,7 @@ in ''} ''; - passthru.providedSessions = ["hyprland"]; + passthru.providedSessions = ["hyprland"] ++ optionals withSystemd ["hyprland-uwsm"]; meta = { homepage = "https://github.com/hyprwm/Hyprland";