nixos/modules/desktop/greetd.nix

18 lines
283 B
Nix
Raw Normal View History

2025-12-12 04:02:55 +01:00
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.fireproof.desktop.enable {
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.tuigreet}/bin/tuigreet --user-menu";
};
};
};
};
}