it has to work eventually

This commit is contained in:
caem 2025-01-24 23:29:22 +01:00
parent 47d9f76315
commit da787b4fce
Signed by: caem
GPG key ID: 69A830D03203405F

View file

@ -3,7 +3,7 @@
# https://github.com/schizofox/schizofox/blob/cdf69b2a445ff12680657a3bd44ce7c406bf2ae6/flake/modules/home-manager/default.nix
{ ... }: final: prev: {
firefox-esr-wrapped = cfg: let
firefox-esr-wrapped = let
sandboxFirefox = base: let
sandboxed = prev.mkNixPak {
config = { sloth, ... }: {
@ -76,7 +76,13 @@
};
};
in sandboxed.config.env // {
inherit (prev.firefox-esr) meta;
inherit (prev.firefox-esr)
meta
browserName
binaryName
version;
unwrapped = prev.firefox-esr;
};
in
sandboxFirefox prev.firefox-esr;