Files
LillyOS/modules/desktop/greeter.nix

14 lines
292 B
Nix

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