mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 11:08:34 +01:00
17 lines
299 B
Nix
17 lines
299 B
Nix
|
{
|
||
|
pkgs,
|
||
|
username,
|
||
|
...
|
||
|
}: {
|
||
|
services.greetd = {
|
||
|
enable = true;
|
||
|
vt = 3;
|
||
|
settings = {
|
||
|
default_session = {
|
||
|
user = username;
|
||
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland"; # start Hyprland with a TUI login manager
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|