nixos/spec/eientei/hass.nix

38 lines
772 B
Nix
Raw Normal View History

2024-02-02 09:13:18 +08:00
{ pkgs
, config
, ...}: {
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
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
}