nix-config/modules/greetd.nix

17 lines
387 B
Nix
Raw Normal View History

2023-06-22 16:42:23 +02:00
{ pkgs, config, ... }: {
2023-06-17 08:43:26 +02:00
services.greetd = {
enable = true;
restart = false;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
user = "greeter";
};
initial_session = {
command = "${pkgs.hyprland}/bin/Hyprland";
2023-06-22 16:42:23 +02:00
user = config.variables.username;
2023-06-17 08:43:26 +02:00
};
};
};
}