nixconfig/modules/greetd.nix

17 lines
215 B
Nix
Raw Normal View History

2023-04-12 20:32:07 +02:00
{
...
}: {
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "zsh";
user = "sora";
};
default_session = initial_session;
};
};
}