14 lines
262 B
Nix
14 lines
262 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";
|
|
};
|
|
};
|
|
};
|
|
}
|