nixos/system/greetd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 = {
2024-10-10 20:55:00 +00:00
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd \"dbus-run-session Hyprland\"";
2024-09-28 11:51:51 +00:00
user = "greeter";
};
};
};
}