15 lines
282 B
Nix
15 lines
282 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# greetd display manager with tuigreet
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.tuigreet}/bin/tuigreet --time --cmd niri-session";
|
|
user = "greeter";
|
|
};
|
|
};
|
|
};
|
|
}
|