2023-08-01 22:21:09 +02:00
|
|
|
{ pkgs, hyprland, ... }:
|
2023-06-22 17:00:39 +02:00
|
|
|
|
|
|
|
{
|
2023-06-17 08:43:26 +02:00
|
|
|
services.greetd = {
|
|
|
|
enable = true;
|
|
|
|
restart = false;
|
2023-06-27 00:35:00 +02:00
|
|
|
|
2023-06-17 08:43:26 +02:00
|
|
|
settings = {
|
|
|
|
default_session = {
|
|
|
|
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
|
|
|
|
user = "greeter";
|
|
|
|
};
|
2023-06-27 00:35:00 +02:00
|
|
|
|
2023-06-17 08:43:26 +02:00
|
|
|
initial_session = {
|
2023-08-01 22:21:09 +02:00
|
|
|
command = "${hyprland.packages.${pkgs.system}.hyprland}/bin/Hyprland";
|
2023-06-22 17:00:39 +02:00
|
|
|
user = "user";
|
2023-06-17 08:43:26 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|