15 lines
188 B
Nix
15 lines
188 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.sway}/bin/sway";
|
|
};
|
|
};
|
|
};
|
|
}
|