Files
LillyOS/modules/desktop/greetd.nix

12 lines
227 B
Nix

{ pkgs, ... }:
{
services.greetd = {
enable = true;
settings = rec {
default_session = {
command = "${pkgs.tuigreet} --cmd start-hyprland";
};
initial_session = default_session;
};
};
}