nixos/spec/eientei/hass.nix

44 lines
803 B
Nix
Raw Permalink Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
config,
...
}:
{
2024-02-02 09:13:18 +08:00
services.home-assistant = {
enable = true;
config = null;
configDir = "/nix/persist/service/hass";
extraComponents = [
"default_config"
"met"
"esphome"
2024-02-02 09:15:35 +08:00
"mqtt"
2024-02-02 09:13:18 +08:00
"synology_dsm"
];
2024-02-17 23:52:50 +08:00
2025-01-13 11:52:09 +08:00
extraPackages =
python3Packages: with python3Packages; [
aiogithubapi
gtts
radios
];
2024-02-02 09:13:18 +08:00
};
services.nginx.virtualHosts."home.514fpv.io" = {
useACMEHost = ".514fpv.io";
addSSL = true;
extraConfig = ''
proxy_buffering off;
'';
locations."/" = {
proxyPass = "http://127.0.0.1:8123";
proxyWebsockets = true;
};
};
2024-02-02 09:13:18 +08:00
global.fs.zfs.mountpoints."/nix/persist/service/hass" = "service/hass";
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
2024-02-02 09:13:18 +08:00
}