this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

hass: chromecast integration

Aria 379fac19 4608934e

+3
+1
nix/hosts/lavender/home-automation.nix
··· 19 19 withCircadianLighting = true; 20 20 withMatter = true; 21 21 withIphoneDetect = true; 22 + withCast = true; 22 23 withBorgBackups = true; 23 24 withEspHome = false; 24 25
+2
nix/modules/services/home-assistant.nix
··· 29 29 withMatter = mkEnableOption "setup matter integration"; 30 30 withIphoneDetect = mkEnableOption "setup iphonedetect"; 31 31 withMqtt = mkEnableOption "setup mqtt integration"; 32 + withCast = mkEnableOption "setup google cast integration"; 32 33 withBorgBackups = mkEnableOption "setup borg backup jobs"; 33 34 tailscaleHost = mkOption { 34 35 description = "if not null, allow https through the given tailscale host"; ··· 51 52 ++ (optional cfg.withEspHome "esphome") 52 53 ++ (optional cfg.withMatter "matter") 53 54 ++ (optional cfg.withMqtt "mqtt") 55 + ++ (optional cfg.withCast "cast") 54 56 ++ [ 55 57 "default_config" 56 58 "met"