10 lines
187 B
Nix
10 lines
187 B
Nix
{pkgs, ...}: {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time";
|
|
};
|
|
};
|
|
};
|
|
}
|