19 lines
344 B
Nix
19 lines
344 B
Nix
services.greetd = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
sessions = {
|
|
hyprland = { path = hyprlandPath; };
|
|
};
|
|
|
|
default_session = {
|
|
session = "hyprland";
|
|
};
|
|
|
|
greeter = {
|
|
command = "${pkgs.tuigreet}/bin/tuigreet --remember --time --time-format '%I:%M %p | %a • %h | %F'";
|
|
user = username;
|
|
};
|
|
};
|
|
};
|