mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-30 17:32:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			395 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			395 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, pkgs, ... }:
 | |
| {
 | |
|   services.sonarr = {
 | |
|     enable = true;
 | |
|     openFirewall = true;
 | |
|   };
 | |
| 
 | |
|   systemd.services.sonarr = {
 | |
|     after = [ "network-online.target" ];
 | |
|     #unitConfig.RequiresMountsFor = [ "/storage" ];
 | |
|   };
 | |
| 
 | |
|   webapps.apps.sonarr = {
 | |
|     dashboard = {
 | |
|       name = "Sonarr";
 | |
|       category = "manag";
 | |
|       icon = "tv";
 | |
|       link = "http://192.168.178.60:8989";
 | |
|     };
 | |
|   };
 | |
| }
 | 
