nix-files/hosts/common/programs/gnome-maps.nix

18 lines
516 B
Nix
Raw Normal View History

{ ... }:
{
sane.programs."gnome.gnome-maps" = {
# TODO: verify location services
# sandbox.method = "bwrap";
# sandbox.wrapperType = "inplace";
# sandbox.whitelistDri = true; # for perf
# sandbox.whitelistDbus = [ "user" ]; # for GPS (geoclue, portals)
# sandbox.whitelistWayland = true;
# sandbox.net = "clearnet";
persist.byStore.plaintext = [ ".cache/shumate" ];
persist.byStore.private = [
({ path = ".local/share/maps-places.json"; type = "file"; })
];
};
}