36 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   description = "Overlay for a policy-configurable non-ESR Firefox";
 | |
| 
 | |
|   inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
 | |
| 
 | |
|   outputs = { self, nixpkgs }: let
 | |
|     pkgs = import nixpkgs { system = "x86_64-linux"; };
 | |
|   in rec {
 | |
|     packages.x86_64-linux = rec {
 | |
|       default = firefox-patched-unwrapped;
 | |
| 
 | |
|       firefox-patched-unwrapped = (pkgs.firefox-unwrapped.override {
 | |
|         geolocationSupport = false;
 | |
|         googleAPISupport = false;
 | |
|       }).overrideAttrs (oldAttrs: rec {
 | |
|         # Allow unsigned extensions in non-ESR firefox
 | |
|         MOZ_REQUIRE_SIGNING = false;
 | |
| 
 | |
|         patches = oldAttrs.patches ++ [
 | |
|           # I want to preconfigure the search engine settings to make
 | |
|           # DuckDuckGo the default search engine and remove most of the
 | |
|           # others.  For some reason, Mozilla is scared of allowing
 | |
|           # managed policies to set the default search engine in non-ESR
 | |
|           # firefox.  This is a two-line patch to remove that
 | |
|           # restriction.
 | |
|           # https://github.com/mozilla/policy-templates/issues/484
 | |
|           ./allow-searchengines-policy.patch
 | |
|         ];
 | |
|       });
 | |
|     };
 | |
| 
 | |
|     overlay = final: prev: {
 | |
|       inherit (packages.x86_64-linux) firefox-patched-unwrapped;
 | |
|     };
 | |
|   };
 | |
| }
 |