MyNixOS website logo
option

services.home-assistant.extraPackages

List of packages to add to propagatedBuildInputs.

A popular example is python3Packages.psycopg2 for PostgreSQL support in the recorder component.

Declarations
Type
function that evaluates to a(n) list of package
Default
python3Packages: with python3Packages; [];
Example
python3Packages: with python3Packages; [
  # postgresql support
  psycopg2
];