Refactor the whole configuration #1

Merged
caem merged 354 commits from refactor into master 2025-02-01 14:05:16 +01:00
Showing only changes of commit 16cf91f9ac - Show all commits

View file

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