it has to work eventually
This commit is contained in:
parent
f01b7ee1a7
commit
fdf9f78888
1 changed files with 65 additions and 67 deletions
|
@ -1,12 +1,8 @@
|
|||
# Shamelessly stolen most parts from https://github.com/schizofox/schizofox
|
||||
|
||||
{ pkgs, inputs, lib, ... }: final: prev: let
|
||||
mkNixPak = inputs.nixpak.lib.nixpak {
|
||||
inherit (pkgs) lib;
|
||||
inherit pkgs;
|
||||
};
|
||||
in {
|
||||
firefox-esr = mkNixPak {
|
||||
{ pkgs, ... }: final: prev: {
|
||||
firefox-esr = let
|
||||
sandboxed-firefox-esr = pkgs.mkNixPak {
|
||||
config = { sloth, ... }: {
|
||||
app.package = pkgs.firefox-esr;
|
||||
flatpak.appId = "org.mozilla.firefox";
|
||||
|
@ -74,5 +70,7 @@ in {
|
|||
];
|
||||
};
|
||||
};
|
||||
}.config.script;
|
||||
};
|
||||
in
|
||||
sandboxed-firefox-esr.config.env;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue