aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-13 14:25:08 +0200
committerSoispha <soispha@vhack.eu>2023-08-13 14:25:08 +0200
commit4d8e61706c5ba3327ac77b7132bb6703e520df01 (patch)
tree8fce68ecff4c3bb0a83120c27024d72723dbfb6c /home-manager
parentFix(hm/wms/river): Disable gammastep (diff)
downloadnixos-config-4d8e61706c5ba3327ac77b7132bb6703e520df01.zip
Feat(hm/conf/firefox): Add tridactly native messanger
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/soispha/config/firefox/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/home-manager/soispha/config/firefox/default.nix b/home-manager/soispha/config/firefox/default.nix
index 3c792045..1040ed0b 100644
--- a/home-manager/soispha/config/firefox/default.nix
+++ b/home-manager/soispha/config/firefox/default.nix
@@ -22,6 +22,9 @@
video-pauser = (import ./functions/extensions/video-pauser.nix) {inherit pkgs video_pause;};
in {
+ home.packages = [
+ pkgs.tridactyl-native
+ ];
home.sessionVariables = {
# improve touch input & make scrolling smother
MOZ_USE_XINPUT2 = "1";
@@ -42,6 +45,9 @@ in {
enable = true;
package = pkgs.firefox-wayland.override {
extraNativeMessagingHosts = [video-pauser];
+ cfg = {
+ enableTridactylNative = true;
+ };
};
profiles."default" = {
inherit extensions;