From 055501e76b710afd924798f7094e1309cfd1fc65 Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Wed, 29 Nov 2023 10:15:32 -0300 Subject: [PATCH] chore: sync settings --- home-manager.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/home-manager.nix b/home-manager.nix index 8129d7d..c7585d4 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -172,7 +172,7 @@ plugin = ${pkgs.rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so label = noise_suppressor_mono control = { - "VAD Threshold (%)" = 20.0 + "VAD Threshold (%)" = 30.0 "VAD Grace Period (ms)" = 300 "Retroactive VAD Grace (ms)" = 0 } @@ -240,4 +240,13 @@ enable = true; platformTheme = "qtct"; }; + + # Configure XDG + xdg.mimeApps.defaultApplications = { + "text/html" = "firefox"; + "x-scheme-handler/http" = "firefox"; + "x-scheme-handler/https" = "firefox"; + "x-scheme-handler/about" = "firefox"; + "x-scheme-handler/unknown" = "firefox"; + }; }