diff options
author | Karel Kočí <cynerd@email.cz> | 2023-04-11 17:07:01 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-04-11 17:07:01 +0200 |
commit | 6487de443137c73e57f07f912b982afb7b4ef04d (patch) | |
tree | 6ca604c9e837cda3f3099083859755c66b7b76a5 /nixos | |
parent | eb389bd5108226bca622a4631374b0ad709286cd (diff) | |
download | nixos-personal-6487de443137c73e57f07f912b982afb7b4ef04d.tar.gz nixos-personal-6487de443137c73e57f07f912b982afb7b4ef04d.tar.bz2 nixos-personal-6487de443137c73e57f07f912b982afb7b4ef04d.zip |
home-assistant: removed mqtt settings
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/machine/errol.nix | 4 | ||||
-rw-r--r-- | nixos/modules/home-assistant.nix | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/nixos/machine/errol.nix b/nixos/machine/errol.nix index ad3137c..1a586a1 100644 --- a/nixos/machine/errol.nix +++ b/nixos/machine/errol.nix @@ -77,10 +77,6 @@ with lib; { }; http.server_port = 8808; mqtt = { - broker = config.cynerd.hosts.spt.mox; - port = 1883; - username = "homeassistant"; - password = "!secret mqtt_password"; sensor = import ../modules/home-assistant/sensors.nix; light = import ../modules/home-assistant/light.nix; }; diff --git a/nixos/modules/home-assistant.nix b/nixos/modules/home-assistant.nix index 545cec8..b22a285 100644 --- a/nixos/modules/home-assistant.nix +++ b/nixos/modules/home-assistant.nix @@ -136,10 +136,6 @@ in { }; http.server_port = 8808; mqtt = { - broker = "localhost"; - port = 1883; - username = "homeassistant"; - password = "!secret mqtt_password"; sensor = import ./home-assistant/sensors.nix; light = import ./home-assistant/light.nix; }; |