mumble: ship desktop interface

This commit is contained in:
2024-10-30 02:04:03 +00:00
parent b930bb58fa
commit f9aaa48520
3 changed files with 16 additions and 4 deletions

View File

@@ -398,7 +398,7 @@ in
"losslesscut-bin" # x86-only
# "makemkv" # x86-only
# "monero-gui" # x86-only
# "mumble"
"mumble"
# "nheko" # Matrix chat client
"nicotine-plus" # soulseek client
# "obsidian"
@@ -851,9 +851,6 @@ in
"records/finance/cryptocurrencies/monero"
];
mumble.buildCost = 1;
mumble.persist.byStore.private = [ ".local/share/Mumble" ];
nano.sandbox.autodetectCliPaths = "existingFileOrParent";
netcat.sandbox.net = "all";

View File

@@ -112,6 +112,7 @@
./mimetype.nix
./mmcli.nix
./mopidy.nix
./mumble.nix
./mpv
./msmtp.nix
./nautilus.nix

View File

@@ -0,0 +1,14 @@
{ ... }:
{
sane.programs.mumble = {
buildCost = 1;
persist.byStore.private = [
".config/Mumble" #< client cert, audio + UI settings
".local/share/Mumble" #< sqlite db; probably server connections
];
sandbox.net = "all";
sandbox.whitelistWayland = true;
sandbox.whitelistAudio = true;
};
}