flakes/modules/system/greetd.nix

19 lines
562 B
Nix
Raw Normal View History

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";
};
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\""
''}";
user = "rin";
};
2022-01-16 11:56:33 +07:00
};
};
}