mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			585 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			585 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
let
 | 
						|
  cfg = config.hardware.raspberry-pi."4".apply-overlays-dtmerge;
 | 
						|
  dt_ao_overlay = _final: prev: {
 | 
						|
    deviceTree.applyOverlays = prev.callPackage ./apply-overlays-dtmerge.nix { };
 | 
						|
  };
 | 
						|
in {
 | 
						|
  options.hardware = {
 | 
						|
    raspberry-pi."4".apply-overlays-dtmerge = {
 | 
						|
      enable = lib.mkEnableOption ''
 | 
						|
        replace deviceTree.applyOverlays implementation to use dtmerge from libraspberrypi.
 | 
						|
        this can resolve issues with applying dtbs for the pi.
 | 
						|
      '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  config = lib.mkIf cfg.enable {
 | 
						|
    nixpkgs.overlays = [ dt_ao_overlay ];
 | 
						|
  };
 | 
						|
}
 |