mumble: ship desktop interface
This commit is contained in:
@@ -398,7 +398,7 @@ in
|
|||||||
"losslesscut-bin" # x86-only
|
"losslesscut-bin" # x86-only
|
||||||
# "makemkv" # x86-only
|
# "makemkv" # x86-only
|
||||||
# "monero-gui" # x86-only
|
# "monero-gui" # x86-only
|
||||||
# "mumble"
|
"mumble"
|
||||||
# "nheko" # Matrix chat client
|
# "nheko" # Matrix chat client
|
||||||
"nicotine-plus" # soulseek client
|
"nicotine-plus" # soulseek client
|
||||||
# "obsidian"
|
# "obsidian"
|
||||||
@@ -851,9 +851,6 @@ in
|
|||||||
"records/finance/cryptocurrencies/monero"
|
"records/finance/cryptocurrencies/monero"
|
||||||
];
|
];
|
||||||
|
|
||||||
mumble.buildCost = 1;
|
|
||||||
mumble.persist.byStore.private = [ ".local/share/Mumble" ];
|
|
||||||
|
|
||||||
nano.sandbox.autodetectCliPaths = "existingFileOrParent";
|
nano.sandbox.autodetectCliPaths = "existingFileOrParent";
|
||||||
|
|
||||||
netcat.sandbox.net = "all";
|
netcat.sandbox.net = "all";
|
||||||
|
@@ -112,6 +112,7 @@
|
|||||||
./mimetype.nix
|
./mimetype.nix
|
||||||
./mmcli.nix
|
./mmcli.nix
|
||||||
./mopidy.nix
|
./mopidy.nix
|
||||||
|
./mumble.nix
|
||||||
./mpv
|
./mpv
|
||||||
./msmtp.nix
|
./msmtp.nix
|
||||||
./nautilus.nix
|
./nautilus.nix
|
||||||
|
14
hosts/common/programs/mumble.nix
Normal file
14
hosts/common/programs/mumble.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user