misc: fix mozilla native messaging hosts

This commit is contained in:
jaredmontoya 2025-05-10 11:47:37 +02:00 committed by Austin Horstman
parent a48fecda09
commit 7a3f3e5507

View file

@ -70,11 +70,13 @@ in
"${thunderbirdNativeMessagingHostsPath}" = lib.mkIf (cfg.thunderbirdNativeMessagingHosts != [ ]) {
source = "${thunderbirdNativeMessagingHostsJoined}/lib/mozilla/native-messaging-hosts";
recursive = true;
ignorelinks = true;
};
"${firefoxNativeMessagingHostsPath}" = lib.mkIf (cfg.firefoxNativeMessagingHosts != [ ]) {
source = "${firefoxNativeMessagingHostsJoined}/lib/mozilla/native-messaging-hosts";
recursive = true;
ignorelinks = true;
};
}
else
@ -89,6 +91,7 @@ in
"${firefoxNativeMessagingHostsPath}" = {
source = "${nativeMessagingHostsJoined}/lib/mozilla/native-messaging-hosts";
recursive = true;
ignorelinks = true;
};
};
};