NixOS-Speak/extra/exampleConfig.nix

18 lines
239 B
Nix

{ config, ... }:
{
imports = [ ./.. ];
config.speak = {
enable = true;
# runAsRoot = false;
config.speakup = {
soft = {
direct = "1";
rate = "7";
};
};
};
config.sound.enable = true;
}