Add speech synthesis
This commit is contained in:
parent
9c9092f0a0
commit
5dfc9d5cb6
2 changed files with 37 additions and 30 deletions
|
@ -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
|
||||||
|
|
|
@ -1,37 +1,43 @@
|
||||||
{ inputs, lib, config, pkgs, ... }:
|
{ inputs, lib, config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home-manager.users.tdpeuter.programs.firefox = {
|
home-manager.users.tdpeuter = {
|
||||||
enable = true;
|
home.packages = with pkgs; [
|
||||||
package = pkgs.firefox.override {
|
speechd
|
||||||
cfg = {
|
];
|
||||||
enableTridactylNative = true;
|
|
||||||
};
|
|
||||||
extraPolicies = {
|
|
||||||
DisableFirefoxStudies = true;
|
|
||||||
DisablePocket = true;
|
|
||||||
DisableTelemetry = true;
|
|
||||||
ExtensionSettings = {};
|
|
||||||
OfferToSaveLogins = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
profiles.tdpeuter = {
|
|
||||||
search = {
|
|
||||||
default = "DuckDuckGo";
|
|
||||||
force = true;
|
|
||||||
engines = {
|
|
||||||
"eBay".metaData.hidden = true;
|
|
||||||
"Nix Packages" = {
|
|
||||||
urls = [{
|
|
||||||
template = "https://search.nixos.org/packages";
|
|
||||||
params = [
|
|
||||||
{ name = "type"; value = "packages"; }
|
|
||||||
{ name = "query"; value = "{searchTerms}"; }
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
|
|
||||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
programs.firefox = {
|
||||||
definedAliases = [ "@np" ];
|
enable = true;
|
||||||
|
package = pkgs.firefox.override {
|
||||||
|
cfg = {
|
||||||
|
enableTridactylNative = true;
|
||||||
|
};
|
||||||
|
extraPolicies = {
|
||||||
|
DisableFirefoxStudies = true;
|
||||||
|
DisablePocket = true;
|
||||||
|
DisableTelemetry = true;
|
||||||
|
ExtensionSettings = {};
|
||||||
|
OfferToSaveLogins = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
profiles.tdpeuter = {
|
||||||
|
search = {
|
||||||
|
default = "DuckDuckGo";
|
||||||
|
force = true;
|
||||||
|
engines = {
|
||||||
|
"eBay".metaData.hidden = true;
|
||||||
|
"Nix Packages" = {
|
||||||
|
urls = [{
|
||||||
|
template = "https://search.nixos.org/packages";
|
||||||
|
params = [
|
||||||
|
{ name = "type"; value = "packages"; }
|
||||||
|
{ name = "query"; value = "{searchTerms}"; }
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
|
||||||
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||||
|
definedAliases = [ "@np" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue