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

14 lines
281 B
Nix
Raw Normal View History

2024-05-01 17:18:28 +00:00
{ pkgs, ... }:
{
services.home-assistant = {
enable = true;
configWritable = true;
2024-05-01 17:25:06 +00:00
config = null;
2024-05-01 18:39:25 +00:00
extraPackages = python3Packages: with pkgs.python3Packages; [
2024-05-01 18:35:38 +00:00
radios
];
customComponents = with pkgs.home-assistant-custom-components; [
];
2024-05-01 17:18:28 +00:00
};
}