14 lines
252 B
Nix
14 lines
252 B
Nix
{ pkgs, username, ... }:
|
|
|
|
{
|
|
services.greetd = {
|
|
enable = true;
|
|
vt = 3;
|
|
settings = {
|
|
default_session = {
|
|
user = username;
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
|
|
};
|
|
};
|
|
};
|
|
}
|