snowflake/hosts/yuki/services/hass/default.nix
notohh 5b6e91249f
All checks were successful
flake check / check (push) Successful in 4m9s
fmt check / check (push) Successful in 53s
yuki: add basic hass config
2024-01-16 22:50:24 -05:00

29 lines
462 B
Nix

_: {
imports = [
./lovelace.nix
./config.nix
];
nixpkgs.config.permittedInsecurePackages = ["openssl-1.1.1w"];
services.home-assistant = {
enable = true;
openFirewall = true;
extraComponents = [
"default_config"
"met"
"openweathermap"
"esphome"
"google_translate"
"radio_browser"
"sonarr"
"radarr"
"glances"
"epson"
"eufy"
"hue"
"nanoleaf"
];
};
}