nixconfig/modules/greetd.nix
2023-10-12 16:16:29 +02:00

17 lines
215 B
Nix
Executable File

{
...
}: {
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "zsh";
user = "sora";
};
default_session = initial_session;
};
};
}