13 lines
201 B
Nix
13 lines
201 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.niksos.desktop.enable {
|
|
# greetd display manager
|
|
services.greetd = {
|
|
enable = true;
|
|
settings.terminal.vt = 1;
|
|
};
|
|
};
|
|
}
|