15 lines
326 B
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.hyprland}/bin/start-hyprland";
|
|
user = "lilly";
|
|
};
|
|
initial_session = default_session;
|
|
};
|
|
};
|
|
}
|