12 lines
		
	
	
	
		
			317 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			317 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, ... }:
 | 
						|
{
 | 
						|
  services.anubis = {
 | 
						|
    instances."nekomesh" = {
 | 
						|
      enable = true;
 | 
						|
      settings = {
 | 
						|
        TARGET = "http://${config.services.grafana.settings.server.http_addr}:${builtins.toString config.services.grafana.settings.server.http_port}";
 | 
						|
        SERVE_ROBOTS_TXT = true;
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
}
 |