This commit is contained in:
caem 2025-01-25 01:22:43 +01:00
parent acf663a58d
commit 16cf91f9ac
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -7,7 +7,7 @@
sandboxed-firefox-esr = prev.mkNixPak {
config = { sloth, ... }: {
app.package = prev.firefox-esr-unwrapped;
app.binPath = "bin/firefox-esr-unwrapped";
app.binPath = "bin/firefox-esr-sandboxed";
flatpak.appId = "org.mozilla.firefox";
dbus.policies = {
@ -75,5 +75,8 @@
};
};
in
prev.wrapFirefox sandboxed-firefox-esr.config.env;
prev.wrapFirefox sandboxed-firefox-esr.config.env {
applicationName = "firefox-esr-wrapped";
desktopName = "Firefox ESR (Sandboxed)";
};
}