15 lines
215 B
Nix
15 lines
215 B
Nix
{ ... }:
|
|
{
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = rec {
|
|
initial_session = {
|
|
command = "sway";
|
|
user = "mandlm";
|
|
};
|
|
|
|
default_session = initial_session;
|
|
};
|
|
};
|
|
}
|