2019-08-18 10:57:30 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
home.stateVersion = "19.09";
|
|
|
|
|
|
|
|
programs.firefox.enable = true;
|
|
|
|
|
2019-10-08 22:46:27 +02:00
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: super: {
|
2020-02-02 00:39:17 +01:00
|
|
|
firefox-unwrapped = pkgs.runCommand "firefox-0" {
|
|
|
|
meta.description = "I pretend to be Firefox";
|
|
|
|
preferLocalBuild = true;
|
|
|
|
allowSubstitutes = false;
|
2021-07-18 20:29:00 +02:00
|
|
|
passthru.gtk3 = null;
|
2020-02-02 00:39:17 +01:00
|
|
|
} ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
touch "$out/bin/firefox"
|
|
|
|
chmod 755 "$out/bin/firefox"
|
|
|
|
'';
|
2019-10-08 22:46:27 +02:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-08-18 10:57:30 +02:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileRegex \
|
|
|
|
home-path/bin/firefox \
|
|
|
|
MOZ_APP_LAUNCHER
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|