23 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }@args:
 | 
						|
final: prev:
 | 
						|
let
 | 
						|
  inherit (prev) lib;
 | 
						|
in
 | 
						|
[
 | 
						|
  ./niri.nix
 | 
						|
  ./spotifyx.nix
 | 
						|
  ./radicle-explorer.nix
 | 
						|
  ./wshowkeys.nix
 | 
						|
  # ./QQ.nix
 | 
						|
  ./helix.nix
 | 
						|
  ./cliphist.nix
 | 
						|
  ./zulip.nix
 | 
						|
  ./spotifyd.nix
 | 
						|
  ./nautilus.nix
 | 
						|
  ./neovim-nightly.nix
 | 
						|
 | 
						|
  # Nur
 | 
						|
  ./nur.nix
 | 
						|
]
 | 
						|
|> map (file: import file args)
 | 
						|
|> (overlays: (lib.composeManyExtensions overlays) final prev)
 |