Services: get Home Assistant working, then promptly disable it (couldn't find any devices :\ )
This commit is contained in:
parent
121d996287
commit
6ab9a35136
|
@ -21,12 +21,13 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
# List of subdomains to add to the TLS certificate
|
# List of subdomains to add to the TLS certificate
|
||||||
subdomains = [
|
subdomains = with config.secrets.services; [
|
||||||
config.secrets.services.deluge.url
|
deluge.url
|
||||||
config.secrets.services.forgejo.url
|
forgejo.url
|
||||||
config.secrets.services.gremlin-lab.url
|
gremlin-lab.url
|
||||||
config.secrets.services.jellyfin.url
|
home-assistant.url
|
||||||
config.secrets.services.netdata.url
|
jellyfin.url
|
||||||
|
netdata.url
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
{ config, lib, ... }:
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.aux.system.services.home-assistant;
|
cfg = config.aux.system.services.home-assistant;
|
||||||
|
@ -32,13 +37,14 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
services = {
|
services = {
|
||||||
home-assistant = {
|
home-assistant = {
|
||||||
|
enable = true;
|
||||||
# opt-out from declarative configuration management
|
# opt-out from declarative configuration management
|
||||||
config = null;
|
|
||||||
lovelaceConfig = null;
|
lovelaceConfig = null;
|
||||||
# configure the path to your config directory
|
# configure the path to your config directory
|
||||||
configDir = cfg.home;
|
configDir = cfg.home;
|
||||||
# specify list of components required by your configuration
|
# specify list of components required by your configuration
|
||||||
extraComponents = [
|
extraComponents = [
|
||||||
|
"default_config"
|
||||||
"esphome"
|
"esphome"
|
||||||
"eufy"
|
"eufy"
|
||||||
"govee_light_local"
|
"govee_light_local"
|
||||||
|
@ -46,12 +52,18 @@ in
|
||||||
"radio_browser"
|
"radio_browser"
|
||||||
"tplink"
|
"tplink"
|
||||||
];
|
];
|
||||||
|
extraPackages = python3Packages: with python3Packages; [ numpy ];
|
||||||
|
config.http = {
|
||||||
|
server_host = "::1";
|
||||||
|
trusted_proxies = [ "::1" ];
|
||||||
|
use_x_forwarded_for = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
nginx.virtualHosts."${cfg.url}" = {
|
nginx.virtualHosts."${cfg.url}" = {
|
||||||
useACMEHost = cfg.domain;
|
useACMEHost = cfg.domain;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:8123";
|
proxyPass = "http://[::1]:8123";
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# Security / XSS Mitigation Headers
|
# Security / XSS Mitigation Headers
|
||||||
|
|
Loading…
Reference in a new issue