mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Add new file
This commit is contained in:
parent
f8521c85b5
commit
808704a868
1 changed files with 26 additions and 0 deletions
26
software/home-assistant/home-assistant.nix
Normal file
26
software/home-assistant/home-assistant.nix
Normal 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" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue