programs: ship zoom-us
This commit is contained in:
@@ -435,6 +435,7 @@ in
|
|||||||
"wireshark" # could maybe ship the cli as sysadmin pkg
|
"wireshark" # could maybe ship the cli as sysadmin pkg
|
||||||
# "xterm" # requires Xwayland
|
# "xterm" # requires Xwayland
|
||||||
# "zecwallet-lite" # x86-only
|
# "zecwallet-lite" # x86-only
|
||||||
|
"zoom-us"
|
||||||
# "zulip"
|
# "zulip"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@@ -237,6 +237,7 @@
|
|||||||
./zeal.nix
|
./zeal.nix
|
||||||
./zecwallet-lite.nix
|
./zecwallet-lite.nix
|
||||||
./zelda64recomp.nix
|
./zelda64recomp.nix
|
||||||
|
./zoom-us.nix
|
||||||
./zulip.nix
|
./zulip.nix
|
||||||
./zsa-udev-rules.nix
|
./zsa-udev-rules.nix
|
||||||
./zfs-tools.nix
|
./zfs-tools.nix
|
||||||
|
19
hosts/common/programs/zoom-us.nix
Normal file
19
hosts/common/programs/zoom-us.nix
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
sane.programs.zoom-us = {
|
||||||
|
sandbox.net = "clearnet";
|
||||||
|
sandbox.whitelistAudio = true;
|
||||||
|
sandbox.whitelistAvDev = true; #< XXX(2025-05-29): it doesn't use pipewire for mic/video
|
||||||
|
sandbox.whitelistDri = true;
|
||||||
|
sandbox.whitelistWayland = true;
|
||||||
|
sandbox.whitelistX = true; # XXX(2025-05-29): required; TODO: try setting QP_... env vars to get native wayland?
|
||||||
|
# TODO: .config/{zoom,zoomus}.conf
|
||||||
|
# TODO: .config/Unknown Organization/zoom.conf
|
||||||
|
persist.byStore.ephemeral = [
|
||||||
|
".cache/zoom" # 8MB qmlcache
|
||||||
|
];
|
||||||
|
persist.byStore.private = [
|
||||||
|
".zoom" # 400MB of app-data (i.e. Zoom downloads its assets instead of shipping them in the package)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user