initial setup
This commit is contained in:
		
							
								
								
									
										48
									
								
								root/services/home-assistant/default.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								root/services/home-assistant/default.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,48 @@
 | 
			
		||||
{ ... }:
 | 
			
		||||
{
 | 
			
		||||
  virtualisation.oci-containers.containers."container-home-assistant-app" = {
 | 
			
		||||
    autoStart = true;
 | 
			
		||||
    image = "ghcr.io/home-assistant/home-assistant:stable";
 | 
			
		||||
    devices = [
 | 
			
		||||
        "/dev/ttyUSB0:/dev/ttyUSB0"
 | 
			
		||||
    ];
 | 
			
		||||
    environment = {
 | 
			
		||||
      "TZ" = "Europe/Berlin";
 | 
			
		||||
      "PUID" = "0";
 | 
			
		||||
      "PGID" = "0";
 | 
			
		||||
    };
 | 
			
		||||
    networks = [
 | 
			
		||||
      "network-internal"
 | 
			
		||||
    ];
 | 
			
		||||
    ports = [
 | 
			
		||||
      "8123:8123"
 | 
			
		||||
    ];
 | 
			
		||||
    volumes = [
 | 
			
		||||
      "volume-home-assistant-config:/config:rw"
 | 
			
		||||
      "/var/run/docker.sock:/var/run/docker.sock:ro"
 | 
			
		||||
    ];
 | 
			
		||||
    extraOptions = [
 | 
			
		||||
       "--pull=always"
 | 
			
		||||
     ];
 | 
			
		||||
  };
 | 
			
		||||
  virtualisation.oci-containers.containers."container-home-assistant-mqtt" = {
 | 
			
		||||
    autoStart = true;
 | 
			
		||||
    image = "eclipse-mosquitto:latest";
 | 
			
		||||
    environment = {
 | 
			
		||||
      "TZ" = "Europe/Berlin";
 | 
			
		||||
      "PUID" = "0";
 | 
			
		||||
      "PGID" = "0";
 | 
			
		||||
    };
 | 
			
		||||
    networks = [
 | 
			
		||||
      "network-internal"
 | 
			
		||||
    ];
 | 
			
		||||
    ports = [
 | 
			
		||||
      "1883:1883"
 | 
			
		||||
      "9001:9001"
 | 
			
		||||
    ];
 | 
			
		||||
    volumes = [
 | 
			
		||||
      "volume-home-assistant-mqtt:/etc/mosquitto:rw"
 | 
			
		||||
      "volume-home-assistant-mqtt-config:/mosquitto/config:rw"
 | 
			
		||||
    ];
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user