11 lines
165 B
Nix
11 lines
165 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.tuigreet} --cmd";
|
|
}
|
|
}
|
|
};
|
|
} |