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