Files
nix-files/hosts/common/programs/dialect.nix
2025-03-19 07:01:23 +00:00

14 lines
384 B
Nix

{ ... }:
{
sane.programs.dialect = {
buildCost = 1;
sandbox.wrapperType = "inplace"; # share/search_providers/ calls back into the binary, weird wrap semantics
sandbox.whitelistWayland = true;
sandbox.net = "clearnet";
# gsettingsPersist = [ "app/drey/Dialect" ];
sandbox.mesaCacheDir = ".cache/dialect/mesa"; # TODO: is this the correct app-dir?
};
}