feat(eientei): add home-assistant

This commit is contained in:
514fpv 2024-02-02 09:13:18 +08:00
parent 3d004ca78a
commit 7bf9f18260
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

20
spec/eientei/hass.nix Normal file
View file

@ -0,0 +1,20 @@
{ 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";
}