Files
LillyOS/modules/desktop/greeter.nix

15 lines
326 B
Nix

{ pkgs, ... }:
{
programs.regreet.enable = true;
services.greetd = {
enable = true;
settings = rec {
default_session = {
command = "${pkgs.uwsm}/bin/uwsm start -e -D Hyprland ${pkgs.gyprland}/bin/start-hyprland";
user = "lilly";
};
initial_session = default_session;
};
};
}