21 lines
393 B
Nix
21 lines
393 B
Nix
|
{ pkgs
|
||
|
, config
|
||
|
, ...}: {
|
||
|
services.home-assistant = {
|
||
|
enable = true;
|
||
|
config = null;
|
||
|
configDir = "/nix/persist/service/hass";
|
||
|
|
||
|
extraComponents = [
|
||
|
"default_config"
|
||
|
"met"
|
||
|
"esphome"
|
||
|
"synology_dsm"
|
||
|
];
|
||
|
};
|
||
|
|
||
|
nixpkgs.config.permittedInsecurePackages = [ "openssl-1.1.1w" ];
|
||
|
|
||
|
global.fs.zfs.mountpoints."/nix/persist/service/hass" = "service/hass";
|
||
|
}
|