nixos/system/greetd.nix

13 lines
251 B
Nix
Raw Normal View History

2024-09-28 11:51:51 +00:00
{ pkgs, ... }:
{
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd \"dbus-run-session hyprland\"";
user = "greeter";
};
};
};
}