infrastructure/hosts/silicon/services/greetd/default.nix

13 lines
250 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{pkgs, ...}: {
services.greetd = {
enable = true;
settings = {
default_session = {
2023-12-15 15:18:36 +00:00
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd Hyprland"; # TODO: use nix pkgs
user = "greeter";
};
};
};
}