24 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   lib,
 | |
|   ...
 | |
| }: let
 | |
|   cfg = config.programs.vortex;
 | |
| in {
 | |
|   options.programs.vortex = {
 | |
|     enable = lib.mkEnableOption "Vortex (Nexus Mods manager)";
 | |
|   };
 | |
| 
 | |
|   config = {
 | |
|     assertions = [
 | |
|       {
 | |
|         assertion = !cfg.enable;
 | |
|         message = ''
 | |
|           Vortex module is not yet fully configured.
 | |
|           Please download and install Vortex manually from the Nexus Mods website,
 | |
|           then configure the Wine environment and dependencies as needed.
 | |
|         '';
 | |
|       }
 | |
|     ];
 | |
|   };
 | |
| }
 |