13 lines
208 B
Nix
13 lines
208 B
Nix
command: {config, ...}: let
|
|
user = config.user;
|
|
in {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
inherit command;
|
|
user = user;
|
|
};
|
|
};
|
|
};
|
|
}
|