15 lines
280 B
Nix
15 lines
280 B
Nix
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
services.greetd = {
|
||
|
enable = config.system.desktop.enable;
|
||
|
restart = true;
|
||
|
settings = {
|
||
|
terminal = {
|
||
|
vt = 2;
|
||
|
switch = true;
|
||
|
};
|
||
|
default_session.command = "${pkgs.greetd.tuigreet}/bin/tuigreet";
|
||
|
};
|
||
|
};
|
||
|
}
|