12 lines
215 B
Nix
12 lines
215 B
Nix
{...}: {
|
|
services.greetd = {
|
|
enable = true;
|
|
settings = rec {
|
|
initial_session = {
|
|
command = "Hyprland";
|
|
user = "notoh";
|
|
};
|
|
default_session = initial_session;
|
|
};
|
|
};
|
|
}
|