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