Add new file

This commit is contained in:
Aaron Honeycutt 2024-02-16 03:46:59 +00:00
parent f8521c85b5
commit 808704a868

View file

@ -0,0 +1,26 @@
config, pkgs, lib, ... }:
{
services.home-assistant = {
enable = true;
extraComponents = [
"cast"
"esphome"
"google_translate"
"met"
"nest"
"radio_browser"
];
config = {
# Includes dependencies for a basic setup
# https://www.home-assistant.io/integrations/default_config/
default_config = {};
homeassistant = {
unit_system = "imperial";
temperature_unit = "F";
time_zone = "America/Denver";
};
feedreader.urls = [ "https://nixos.org/blogs.xml" ];
};
};
}