Add speech synthesis

This commit is contained in:
Tibo De Peuter 2023-10-07 16:16:33 +02:00 committed by Tibo De Peuter
parent 9c9092f0a0
commit 5dfc9d5cb6
2 changed files with 37 additions and 30 deletions

View file

@ -5,6 +5,7 @@
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../../modules/hardware/nvidia.nix ../../modules/hardware/nvidia.nix
../../modules/hardware/corsair
../../modules/apps/virtualbox ../../modules/apps/virtualbox
../../modules/des/gnome ../../modules/des/gnome

View file

@ -1,7 +1,12 @@
{ inputs, lib, config, pkgs, ... }: { inputs, lib, config, pkgs, ... }:
{ {
home-manager.users.tdpeuter.programs.firefox = { home-manager.users.tdpeuter = {
home.packages = with pkgs; [
speechd
];
programs.firefox = {
enable = true; enable = true;
package = pkgs.firefox.override { package = pkgs.firefox.override {
cfg = { cfg = {
@ -37,5 +42,6 @@
}; };
}; };
}; };
};
} }