13 lines
250 B
Nix
13 lines
250 B
Nix
{pkgs, ...}: {
|
|
services.greetd = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland"; # TODO: use nix pkgs
|
|
user = "greeter";
|
|
};
|
|
};
|
|
};
|
|
}
|