nixos-servers/services/home-assistant/default.nix

14 lines
264 B
Nix

{ pkgs, ... }:
{
services.home-assistant = {
enable = true;
configWritable = true;
config = null;
extraPackages = with pkgs.python3Packages; [
radios
];
customComponents = with pkgs.home-assistant-custom-components; [
];
};
}