nix-files/hosts/common/programs/tuba.nix

12 lines
287 B
Nix
Raw Normal View History

{ ... }:
{
2023-09-24 21:38:20 +00:00
sane.programs.tuba = {
sandbox.method = "bwrap";
sandbox.wrapperType = "wrappedDerivation";
sandbox.net = "clearnet";
sandbox.whitelistAudio = true;
sandbox.whitelistDbus = [ "user" ]; # notifications
2023-09-24 21:38:20 +00:00
suggestedPrograms = [ "gnome-keyring" ];
};
}