diff --git a/modules/desktop/greeter.nix b/modules/desktop/greeter.nix index 6e2b586..cd0a829 100644 --- a/modules/desktop/greeter.nix +++ b/modules/desktop/greeter.nix @@ -1,10 +1,10 @@ -{ pkgs, ... }: +{ pkgs, inputs, ... }: { services.greetd = { enable = true; settings = rec { default_session = { - command = "${pkgs.uwsm}/bin/uwsm start -e -D Hyprland ${pkgs.hyprland}/bin/start-hyprland"; + command = "${pkgs.uwsm}/bin/uwsm start -e -D Hyprland ${inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland}/bin/start-hyprland"; user = "lilly"; }; initial_session = default_session;