puter/common/nixos/features/greetd.nix

11 lines
198 B
Nix
Raw Normal View History

2023-09-17 11:31:20 +00:00
{pkgs, ...}: {
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd sway";
};
};
};
}