nixos/modules/desktop/greetd.nix
2025-12-12 04:02:55 +01:00

17 lines
283 B
Nix

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.fireproof.desktop.enable {
services.greetd = {
enable = true;
settings = {
default_session = {
command = "${pkgs.tuigreet}/bin/tuigreet --user-menu";
};
};
};
};
}