diff options
author | Karel Kočí <cynerd@email.cz> | 2025-08-06 11:28:33 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2025-08-06 11:28:33 +0200 |
commit | 1bf508755335f1e2b6304cb927882f7d4c17a7d6 (patch) | |
tree | 30bc7f2975f193939097c0097a08b49eb1929042 /nixos/configurations | |
parent | 5a8ee10ea7562aad00248bbf753019a0021da069 (diff) | |
download | nixos-personal-1bf508755335f1e2b6304cb927882f7d4c17a7d6.tar.gz nixos-personal-1bf508755335f1e2b6304cb927882f7d4c17a7d6.tar.bz2 nixos-personal-1bf508755335f1e2b6304cb927882f7d4c17a7d6.zip |
nixos/errol: remove home-assistant
Diffstat (limited to 'nixos/configurations')
-rw-r--r-- | nixos/configurations/errol.nix | 40 |
1 files changed, 1 insertions, 39 deletions
diff --git a/nixos/configurations/errol.nix b/nixos/configurations/errol.nix index f986631..defacf3 100644 --- a/nixos/configurations/errol.nix +++ b/nixos/configurations/errol.nix @@ -1,11 +1,4 @@ -{ - config, - lib, - pkgs, - ... -}: let - inherit (lib) mkDefault; -in { +{pkgs, ...}: { system.stateVersion = "24.05"; nixpkgs.hostPlatform.system = "x86_64-linux"; deploy.enable = true; @@ -96,36 +89,5 @@ in { enable = true; dataDir = "/home/cynerd"; }; - - home-assistant = { - enable = true; - openFirewall = true; - configDir = "/var/lib/hass"; - config = { - homeassistant = { - name = "SPT"; - latitude = "!secret latitude"; - longitude = "!secret longitude"; - elevation = "!secret elevation"; - time_zone = "Europe/Prague"; - country = "CZ"; - }; - http.server_port = 8808; - mqtt = { - sensor = import ../home-assistant/sensors.nix; - light = import ../home-assistant/light.nix; - }; - default_config = {}; - automation = "!include automations.yaml"; - }; - extraComponents = ["met"]; - package = pkgs.home-assistant.override { - extraPackages = pkgs: - with pkgs; [ - securetar - pyipp - ]; - }; - }; }; } |