Unverified Commit 4458925b authored by Austin Horstman's avatar Austin Horstman
Browse files

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: default avatarAustin Horstman <khaneliman12@gmail.com>
parent e12e33eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -214,7 +214,7 @@ customStdenv.mkDerivation (finalAttrs: {
  '';

  passthru = {
    providedSessions = [ "hyprland" ];
    providedSessions = [ "hyprland" ] ++ optionals withSystemd [ "hyprland-uwsm" ];
    updateScript = ./update.sh;
  };