From 8ef9f7a4855082ada12c499b21821936d3d804dc Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 5 Feb 2024 18:31:38 +0000 Subject: [PATCH] epiphany: persist dconf settings; reduce sandboxer errors --- hosts/common/programs/epiphany.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/common/programs/epiphany.nix b/hosts/common/programs/epiphany.nix index 8eead99c..974132d9 100644 --- a/hosts/common/programs/epiphany.nix +++ b/hosts/common/programs/epiphany.nix @@ -14,6 +14,7 @@ # enabling DRI/DRM (as below) seems to fix that. sandbox.whitelistDri = true; sandbox.extraHomePaths = [ + ".config/epiphany" #< else it gets angry at launch "tmp" ]; @@ -40,6 +41,7 @@ }); persist.byStore.private = [ ".cache/epiphany" + ".config/dconf" #< for persisting e.g. "Set as Default Browser" prompt question ".local/share/epiphany" # also .config/epiphany, but appears empty ];