2025-03-23 00:23:58 +11:00
|
|
|
{ pkgs, ... }: {
|
2022-01-16 11:56:33 +07:00
|
|
|
services.greetd = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
default_session = {
|
2024-01-17 15:33:46 +07:00
|
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --asterisks --time --cmd 'zsh -c \"source $HOME/.config/zsh/.zshrc && Hyprland > $XDG_RUNTIME_DIR/Hyprland.out\"'";
|
2022-01-16 11:56:33 +07:00
|
|
|
user = "greeter";
|
|
|
|
|
};
|
2025-03-17 15:56:47 +11:00
|
|
|
|
|
|
|
|
initial_session = {
|
2025-03-19 00:35:57 +11:00
|
|
|
command = "${pkgs.writeShellScript "launch.sh" ''
|
|
|
|
|
zsh -c "source $HOME/.config/zsh/.zshrc && Hyprland > \"$XDG_RUNTIME_DIR/Hyprland.out\""
|
|
|
|
|
''}";
|
2025-03-17 15:56:47 +11:00
|
|
|
user = "rin";
|
|
|
|
|
};
|
2022-01-16 11:56:33 +07:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|