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