14 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }@args:
 | 
						|
final: prev:
 | 
						|
let
 | 
						|
  inherit (prev) lib;
 | 
						|
  overlay-files = [
 | 
						|
    ./helix.nix
 | 
						|
    ./spotify.nix
 | 
						|
    ./niri.nix
 | 
						|
    ./ghostty.nix
 | 
						|
    ./juicity.nix
 | 
						|
  ];
 | 
						|
  overlay-list = map (file: import file args) overlay-files;
 | 
						|
in
 | 
						|
(lib.composeManyExtensions overlay-list) final prev
 |