-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
config, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
let | ||
cfg = config.services.speechd; | ||
inherit (lib) | ||
getExe | ||
mkEnableOption | ||
mkIf | ||
mkPackageOption | ||
; | ||
in | ||
{ | ||
options.services.speechd = { | ||
# FIXME: figure out how to deprecate this EXTREMELY CAREFULLY | ||
enable = mkEnableOption "speech-dispatcher speech synthesizer daemon" // { | ||
default = true; | ||
}; | ||
package = mkPackageOption pkgs "speechd" { }; | ||
}; | ||
|
||
# FIXME: speechd 0.12 (or whatever the next version is) | ||
# will support socket activation, so switch to that once it's out. | ||
config = mkIf cfg.enable { | ||
environment = { | ||
systemPackages = [ cfg.package ]; | ||
sessionVariables.SPEECHD_CMD = getExe cfg.package; | ||
}; | ||
}; | ||
} |