130 lines
6.4 KiB
Nix
130 lines
6.4 KiB
Nix
# usage:
|
|
# - start a DM with a rando via
|
|
# - '+' -> 'start conversation'
|
|
# - add a user to your roster via
|
|
# - '+' -> 'start conversation' -> '+' (opens the "add contact" dialog)
|
|
# - this triggers a popup on the remote side asking them for confirmation
|
|
# - after the remote's confirmation there will be a local popup for you to allow them to add you to their roster
|
|
# - to make a call:
|
|
# - ensure the other party is in your roster
|
|
# - open a DM with the party
|
|
# - click the phone icon at top (only visible if other party is in your roster)
|
|
#
|
|
# dino can be autostarted on login -- useful to ensure that i always receive calls and notifications --
|
|
# but at present it has no "start in tray" type of option: it must render a window.
|
|
#
|
|
# outstanding bugs:
|
|
# - NAT holepunching burns CPU/NET when multiple interfaces are up
|
|
# - fix by just `ip link set ovpnd-xyz down`
|
|
# - setting `wg-home` down *seems* to be not necessary
|
|
# - characterized by UPnP/SOAP error 500/718 in wireshark
|
|
# - seems it asks router A to open a port mapping for an IP address which belongs to a different subnet...
|
|
# - mic is sometimes disabled at call start despite presenting as enabled
|
|
# - fix is to toggle it off -> on in the Dino UI
|
|
# - default mic gain is WAY TOO MUCH (heavily distorted)
|
|
# - on lappy/desktop, right-clicking the mic button allows to toggle audio devices, but impossible to trigger this on moby/touch screen!
|
|
# - TODO: see if Dino calls work better with `echo full > /sys/kernel/debug/sched/preempt`
|
|
#
|
|
# probably fixed:
|
|
# - once per 1-2 minutes dino will temporarily drop mic input:
|
|
# - `rtp-WARNING: plugin.vala:148: Warning in pipeline: Can't record audio fast enough
|
|
# - this was *partially* fixed by bumping the pipewire mic buffer to 2048 samples (from ~512)
|
|
# - this was further fixed by setting PULSE_LATENCY_MSEC=20.
|
|
# - possibly Dino should be updated internally: `info.rate / 100` -> `info.rate / 50`.
|
|
# - i think that affects the batching for echo cancellation, adaptive gain control, etc.
|
|
# - dino *should* be able to use Pipewire directly for calls instead of going through pulse, but had trouble achieving that in actuality
|
|
#
|
|
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.sane.programs.dino;
|
|
in
|
|
{
|
|
sane.programs.dino = {
|
|
configOption = with lib; mkOption {
|
|
default = {};
|
|
type = types.submodule {
|
|
options.autostart = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
packageUnwrapped = pkgs.dino.override {
|
|
# XXX(2024/04/24): build without echo cancelation (i.e. force WITH_VOICE_PROCESSOR to be undefined).
|
|
# this means that if the other end of the call is on speaker phone, i'm liable to hear my own voice
|
|
# leave their speaker, enter their mic, and then return to me.
|
|
# the benefit is a >50% reduction in CPU use. insignificant on any modern PC; make-or-break on a low-power Pinephone.
|
|
webrtc-audio-processing = null;
|
|
};
|
|
|
|
# suggestedPrograms = [
|
|
# "gnome-keyring"
|
|
# ];
|
|
|
|
sandbox.net = "clearnet";
|
|
sandbox.whitelistAudio = true;
|
|
# sandbox.whitelistDbus.user.call."org.freedesktop.secrets" = "*"; #< apparently not needed?
|
|
sandbox.whitelistDbus.user.own = [ "im.dino.Dino" ];
|
|
sandbox.whitelistDri = true; #< not strictly necessary, but we need all the perf we can get on moby
|
|
sandbox.whitelistSendNotifications = true;
|
|
sandbox.whitelistPortal = [
|
|
# "FileChooser"
|
|
# "NetworkMonitor" #< stderr message if omitted, but non-fatal
|
|
"OpenURI"
|
|
"ProxyResolver" #< REQUIRED, else all peers will appear offline & messages can't be sent/received
|
|
];
|
|
sandbox.whitelistWayland = true;
|
|
sandbox.extraHomePaths = [
|
|
"Music"
|
|
"Pictures/albums"
|
|
"Pictures/cat"
|
|
"Pictures/from"
|
|
"Pictures/Photos"
|
|
"Pictures/Screenshots"
|
|
"Pictures/servo-macros"
|
|
"Videos/local"
|
|
"Videos/servo"
|
|
"tmp"
|
|
];
|
|
|
|
# persist.byStore.ephemeral = [
|
|
# ".cache/gstreamer-1.0" # 1.3 MB #< TODO: place the gst cache in ~/.cache/dino/gstreamer-1.0
|
|
# ];
|
|
persist.byStore.private = [ ".local/share/dino" ];
|
|
sandbox.mesaCacheDir = ".cache/dino/mesa";
|
|
|
|
services.dino = {
|
|
description = "dino XMPP client";
|
|
partOf = lib.mkIf cfg.config.autostart [ "graphical-session" ];
|
|
|
|
# audio buffering; see: <https://gitlab.freedesktop.org/pipewire/pipewire/-/wikis/FAQ#pipewire-buffering-explained>
|
|
# dino defaults to 10ms mic buffer, which causes underruns, which Dino handles *very* poorly
|
|
# as in, the other end of the call will just not receive sound from us for a couple seconds.
|
|
# pipewire uses power-of-two buffering for the mic itself (by default), but this env var supports only whole numbers, which isn't quite reconcilable:
|
|
# - 1024/48000 = 21.33ms
|
|
# - 2048/48000 = 42.67ms
|
|
# - 4096/48000 = 85.33ms
|
|
# also, Dino's likely still doing things in 10ms batches internally.
|
|
#
|
|
# note that this number supposedly is just the buffer size which Dino asks Pulse (pipewire) to share with it.
|
|
# in theory, it's equivalent to adjusting pipewire's quanta setting, and so isn't additive to the existing pipewire buffers.
|
|
# (and would also be overriden by pipewire's quanta.min setting).
|
|
# but in practice, setting this seems to have some more effect beyond just the buffer sizes visible in `pw-top`.
|
|
#
|
|
# further: decrease the "niceness" of dino, so that it can take precedence over anything else.
|
|
# ideally this would target just the audio processing, rather than the whole program.
|
|
# pipewire is the equivalent of `nice -n -21`, so probably don't want to go any more extreme than that.
|
|
# nice -n -15 chosen arbitrarily; not optimized (and seems to have very little impact in practice anyway).
|
|
# buffer size:
|
|
# - 1024 (PULSE_LATENCY_MSEC=20): `pw-top` shows several underruns per second.
|
|
# - 2048 (PULSE_LATENCY_MSEC=50): `pw-top` shows very few underruns: maybe 1-5 per minute. with voice processor disabled, this works well. with it enabled, i still get gaps in which the mic "disappears".
|
|
# - 4096 (PULSE_LATENCY_MSEC=100): `pw-top` shows 0 underruns. with voice processor disabled, i seem to be permanently muted. with it enabled, this works well.
|
|
#
|
|
# note that debug logging during calls produces so much journal spam that it pegs the CPU and causes dropped audio
|
|
# env G_MESSAGES_DEBUG = "all";
|
|
command = "env PULSE_LATENCY_MSEC=50 nice -n -15 dino";
|
|
};
|
|
};
|
|
}
|