me like nix
0

Configure Feed

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

1{ ... }: 2 3{ 4 imports = [ 5 ../common/home.nix 6 ]; 7 8 services.home-assistant = { 9 enable = true; 10 extraComponents = [ 11 "esphome" 12 "met" 13 "radio_browser" 14 ]; 15 config = { 16 default_config = { }; 17 }; 18 }; 19 20 networking.firewall.allowedTCPPorts = [ 8132 ]; 21 22}