nix_config/machines/cj/home-assistant.nix
2023-06-13 07:04:11 -04:00

18 lines
333 B
Nix

serverIP :
{
image = "ghcr.io/home-assistant/home-assistant:2023.06.0";
#ports = [
#"8123:8123"
#];
volumes = [
"/etc/localtime:/etc/localtime:ro"
"/serverdata/home-assistant:/config"
];
extraOptions = [
"--privileged"
"--network=host"
#"--device /dev/ttyUSB0"
#"--device /dev/ttyUSB1"
];
}