snowflake/modules/greetd.nix

13 lines
215 B
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{...}: {
services.greetd = {
enable = true;
settings = rec {
initial_session = {
command = "Hyprland";
user = "notoh";
};
default_session = initial_session;
};
};
}