Files
LillyOS/modules/desktop/greeter.nix

14 lines
355 B
Nix

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