nixos/orca: Make available to gdm greeter

Without this, the greeter is unable to see `orca` program on `PATH`
and so `${gdm}/share/gdm/greeter/autostart/orca-autostart.desktop`
will fail to start it. As a result, screen reader would not work
on the login screen.
This commit is contained in:
Jan Tojnar 2025-05-20 01:39:56 +02:00
parent 4acad94f07
commit 9af27f1cb5

View file

@ -20,6 +20,7 @@ in
config = mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
systemd.services.display-manager.path = [ cfg.package ];
services.speechd.enable = true;
};
}