21 lines
		
	
	
	
		
			384 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			384 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ outputs, lib, config, ... }:
 | 
						|
 | 
						|
let
 | 
						|
  inherit (lib) mkIf;
 | 
						|
  host = config.systemModules.host;
 | 
						|
in
 | 
						|
 | 
						|
{
 | 
						|
  config = mkIf (host.type != "phone") {
 | 
						|
    nixpkgs = {
 | 
						|
      overlays = builtins.attrValues outputs.overlays;
 | 
						|
      config = {
 | 
						|
        allowUnfree = true;
 | 
						|
        permittedInsecurePackages = [
 | 
						|
          "openssl-1.1.1u"
 | 
						|
          "electron-25.9.0"
 | 
						|
        ];
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |