1
0

pkgs/overrides: Dino uses OMEMO by default for new conversations

This commit is contained in:
2025-05-07 18:33:59 +02:00
parent 8d3057758f
commit 1c087b0c9f
2 changed files with 11 additions and 0 deletions

10
pkgs/overrides/dino.nix Normal file
View File

@@ -0,0 +1,10 @@
final: prev:
prev.dino.overrideAttrs (finalAttrs: prevAttrs: {
patches = [
(final.fetchpatch {
# in new chats, enable omemo by default
url = "https://cyberchaos.dev/-/snippets/25/raw/main/omemo-default.patch";
hash = "sha256-WXu9R+SKexgSQ93sQfFXG2CIboW3pYe5d1nsiP07wtE=";
})
];
})