mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 19:24:03 -06:00
create homelab folder for EDI home server
This commit is contained in:
parent
0194d4003d
commit
9ea813f88a
3 changed files with 0 additions and 0 deletions
30
homelab/home-assistant/home-assistant.nix
Normal file
30
homelab/home-assistant/home-assistant.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services.home-assistant = {
|
||||
enable = true;
|
||||
extraComponents = [
|
||||
"cast"
|
||||
"esphome"
|
||||
"google_translate"
|
||||
"lacrosse"
|
||||
"lacrosse_view"
|
||||
"met"
|
||||
"nest"
|
||||
"radio_browser"
|
||||
"systemmonitor"
|
||||
"tplink"
|
||||
];
|
||||
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