nix-config/modules/greetd.nix
2023-06-22 10:42:23 -04:00

17 lines
387 B
Nix

{ pkgs, config, ... }: {
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";
user = config.variables.username;
};
};
};
}