nix-files/hosts/common/programs/zulip.nix
2024-05-04 08:28:48 +00:00

12 lines
271 B
Nix

{ ... }:
{
sane.programs.zulip = {
sandbox.method = "bwrap";
sandbox.net = "clearnet";
sandbox.whitelistDbus = [ "user" ]; # notifications (i hope!)
sandbox.whitelistWayland = true;
# creds
persist.byStore.private = [ ".config/Zulip" ];
};
}