Yash Raj
mobsenpai@lemmy.world
Joined
12 posts • 13 comments
I am yashraj (snaps a finger)
So does it mean passing --cmd Hyprland > /dev/null
to Tuigreet? If so then that wouldn’t work with my setup, as I use sessions instead of cmd.
Here is how I have it in nixos
services.greetd = {
enable = true;
settings = {
default_session = {
user = "greeter";
command = ''
${getExe' pkgs.unstable.greetd.tuigreet "tuigreet"} \
--time \
--sessions ${cfg.sessionDirs} \
--remember \
--remember-session
'';
};
};
};
The sessionDirs
is this
modules.services.greetd.sessionDirs = ["${hyprlandPackage}/share/wayland-sessions"];
I am basing my config on this https://github.com/JManch/nixos/blob/main/modules/nixos/services/greetd.nix
And I don’t see 'em using --cmd
only difference I’ve noticed so far is that they use a flake to define the package of hyprland.
ha ha!! take that!