Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 28b23fe9f2 |
@@ -10,7 +10,6 @@
|
|||||||
./disks.nix
|
./disks.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./environments.nix
|
./environments.nix
|
||||||
./network.nix
|
|
||||||
# ./system.nix use docker here
|
# ./system.nix use docker here
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
_: {
|
|
||||||
# Athena (local AI): allow LAN access to the Hermes web dashboard.
|
|
||||||
# Bound to 0.0.0.0:9119 in the athena docker stack; NixOS default-deny
|
|
||||||
# firewall otherwise blocks inbound connections from other devices.
|
|
||||||
networking.firewall.allowedTCPPorts = [
|
|
||||||
9119 # athena hermes dashboard
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -23,6 +23,23 @@ in
|
|||||||
services.home-assistant = {
|
services.home-assistant = {
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
|
||||||
|
# HACS-style custom components, packaged declaratively (no HACS runtime).
|
||||||
|
# Config-flow based: add via Settings > Devices & Services after rebuild.
|
||||||
|
customComponents = [
|
||||||
|
(pkgs.buildHomeAssistantComponent {
|
||||||
|
owner = "Matts-Baps";
|
||||||
|
domain = "sourdough";
|
||||||
|
version = "1.1.3";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "Matts-Baps";
|
||||||
|
repo = "ha-sourdough";
|
||||||
|
rev = "v1.1.3";
|
||||||
|
hash = "sha256-Uoid/2f6GxZMuE5Keu2VjHPYuOxnYG8hsCD6BYcaTvM=";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
extraComponents = [
|
extraComponents = [
|
||||||
"matter"
|
"matter"
|
||||||
"mobile_app"
|
"mobile_app"
|
||||||
|
|||||||
Reference in New Issue
Block a user