13 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   lib,
 | |
|   config,
 | |
|   ...
 | |
| }: {
 | |
|   config = lib.mkIf (config.services.panoramax.enable && config.host.impermanence.enable) {
 | |
|     # TODO: configure impermanence for panoramax data
 | |
|     # This would typically include directories like:
 | |
|     # - /var/lib/panoramax
 | |
|     # - panoramax storage directories
 | |
|     # - any cache or temporary directories that need to persist
 | |
|   };
 | |
| }
 |