mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-10-31 02:52:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			479 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			479 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   self,
 | |
|   inputs,
 | |
|   lib,
 | |
|   ...
 | |
| }: {
 | |
|   types = import ./types {inherit lib self;};
 | |
|   config = import ./config.nix {inherit lib;};
 | |
|   binds = import ./binds.nix {inherit lib;};
 | |
|   dag = import ./dag.nix {inherit lib;};
 | |
|   languages = import ./languages.nix {inherit lib;};
 | |
|   lists = import ./lists.nix {inherit lib;};
 | |
|   attrsets = import ./attrsets.nix {inherit lib;};
 | |
|   lua = import ./lua.nix {inherit lib;};
 | |
|   neovimConfiguration = import ../modules {inherit self inputs lib;};
 | |
| }
 | 
