Compare commits
4 Commits
29c2526e6a
...
c95d66caab
Author | SHA1 | Date | |
---|---|---|---|
|
c95d66caab | ||
|
0fb70b7ff8 | ||
|
1443218ae7 | ||
|
203a4edcd6 |
@ -40,6 +40,7 @@ in
|
|||||||
./teslamate.nix
|
./teslamate.nix
|
||||||
./postgres.nix
|
./postgres.nix
|
||||||
./netdata.nix
|
./netdata.nix
|
||||||
|
./homeassistant.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
age.identityPaths = [ "/root/.ssh/id_ed25519" ];
|
age.identityPaths = [ "/root/.ssh/id_ed25519" ];
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
domain = "home.giugl.io";
|
|
||||||
network = import ./network.nix;
|
|
||||||
host = "127.0.0.1";
|
|
||||||
port = 8123;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
services = {
|
|
||||||
mosquitto = {
|
|
||||||
enable = true;
|
|
||||||
listeners = [{
|
|
||||||
acl = [ "pattern readwrite #" ];
|
|
||||||
omitPasswordAuth = true;
|
|
||||||
settings.allow_anonymous = true;
|
|
||||||
}];
|
|
||||||
};
|
|
||||||
home-assistant = {
|
|
||||||
enable = true;
|
|
||||||
extraComponents = [
|
|
||||||
# Components required to complete the onboarding
|
|
||||||
"met"
|
|
||||||
"radio_browser"
|
|
||||||
];
|
|
||||||
config = {
|
|
||||||
default_config = { };
|
|
||||||
|
|
||||||
http = {
|
|
||||||
server_port = port;
|
|
||||||
server_host = host;
|
|
||||||
trusted_proxies = [ host ];
|
|
||||||
use_x_forwarded_for = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
homeassistant = {
|
|
||||||
name = "Manduria";
|
|
||||||
latitude = 40.4;
|
|
||||||
longitude = 17.63;
|
|
||||||
unit_system = "metric";
|
|
||||||
time_zone = "Europe/Rome";
|
|
||||||
external_url = "http://${domain}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nginx.virtualHosts.${domain} = {
|
|
||||||
# forceSSL = true;
|
|
||||||
# enableACME = true;
|
|
||||||
locations."/" = {
|
|
||||||
proxyPass = "http://${host}:${toString port}";
|
|
||||||
extraConfig = ''
|
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
|
||||||
proxy_set_header Connection "upgrade";
|
|
||||||
allow 10.0.0.0/24;
|
|
||||||
${lib.concatMapStrings (x: "allow ${x};") network.gdevices}
|
|
||||||
deny all;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.extraHosts = ''
|
|
||||||
${network.architect-lan} ${domain}
|
|
||||||
${network.architect-wg} ${domain}
|
|
||||||
${network.architect-ts} ${domain}
|
|
||||||
'';
|
|
||||||
}
|
|
60
hosts/architect/homeassistant.nix
Normal file
60
hosts/architect/homeassistant.nix
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
domain = "home.giugl.io";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.home-assistant = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
http = {
|
||||||
|
server_host = "127.0.0.1";
|
||||||
|
server_port = 8123;
|
||||||
|
use_x_forwarded_for = true;
|
||||||
|
trusted_proxies = [ "127.0.0.1" ];
|
||||||
|
};
|
||||||
|
homeassistant = {
|
||||||
|
name = "Underwood House";
|
||||||
|
unit_system = "metric";
|
||||||
|
};
|
||||||
|
default_config = { };
|
||||||
|
};
|
||||||
|
extraComponents = [
|
||||||
|
"otbr"
|
||||||
|
"litterrobot"
|
||||||
|
"apple_tv"
|
||||||
|
"homekit"
|
||||||
|
"homekit_controller"
|
||||||
|
"spotify"
|
||||||
|
"hue"
|
||||||
|
"sonos"
|
||||||
|
"tplink"
|
||||||
|
"ollama"
|
||||||
|
"wyoming"
|
||||||
|
"whisper"
|
||||||
|
"piper"
|
||||||
|
"isal"
|
||||||
|
"radarr"
|
||||||
|
"sonarr"
|
||||||
|
];
|
||||||
|
extraPackages = python3Packages: with python3Packages; [
|
||||||
|
pkgs.openai-whisper
|
||||||
|
openai-whisper
|
||||||
|
pkgs.piper-tts
|
||||||
|
pkgs.wyoming-piper
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
architect.vhost.${domain} = with config.architect.networks; {
|
||||||
|
dnsInterfaces = [ "tailscale" "lan" ];
|
||||||
|
|
||||||
|
locations."/" = {
|
||||||
|
port = config.services.home-assistant.config.http.server_port;
|
||||||
|
allowLan = true;
|
||||||
|
proxyWebsockets = true;
|
||||||
|
allow = [
|
||||||
|
tailscale.net
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -12,10 +12,12 @@ in
|
|||||||
nextcloud-admin = {
|
nextcloud-admin = {
|
||||||
file = ../../secrets/nextcloud-admin.age;
|
file = ../../secrets/nextcloud-admin.age;
|
||||||
owner = "nextcloud";
|
owner = "nextcloud";
|
||||||
|
group ="nginx";
|
||||||
};
|
};
|
||||||
nextcloud-database = {
|
nextcloud-database = {
|
||||||
file = ../../secrets/nextcloud-database.age;
|
file = ../../secrets/nextcloud-database.age;
|
||||||
owner = "nextcloud";
|
owner = "nextcloud";
|
||||||
|
group = "nginx";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
architect.vhost.${domain} = with config.architect.networks; {
|
architect.vhost.${domain} = with config.architect.networks; {
|
||||||
dnsInterfaces = [ "tailscale" ];
|
dnsInterfaces = [ "tailscale" "lan" ];
|
||||||
|
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
port = 8989;
|
port = 8989;
|
||||||
|
Loading…
Reference in New Issue
Block a user