mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 07:25:40 +00:00
13 lines
254 B
Nix
13 lines
254 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = {
|
|
default_session = {
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --remember-session";
|
|
user = "greeter";
|
|
};
|
|
};
|
|
};
|
|
}
|