nix-config/modules/greetd.nix
Donovan Glover ed11061d61
hyprland: Use latest commit
This was the only way I could get plugins to work reliably. Might look
into this in the future, but v0.27.2 also includes some changes not
present in v0.27.0.
2023-08-01 16:21:10 -04:00

21 lines
401 B
Nix

{ pkgs, hyprland, ... }:
{
services.greetd = {
enable = true;
restart = false;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland";
user = "greeter";
};
initial_session = {
command = "${hyprland.packages.${pkgs.system}.hyprland}/bin/Hyprland";
user = "user";
};
};
};
}