17 lines
215 B
Nix
Executable File
17 lines
215 B
Nix
Executable File
{
|
|
...
|
|
}: {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = rec {
|
|
initial_session = {
|
|
command = "zsh";
|
|
user = "sora";
|
|
};
|
|
default_session = initial_session;
|
|
};
|
|
};
|
|
}
|
|
|
|
|