services.home-assistant.extraPackages

NixOS option

List of packages to add to propagatedBuildInputs. A popular example is python3Packages.psycopg2 for PostgreSQL support in the recorder component.

type: function that evaluates to a(n) list of package
Default
python3Packages: with python3Packages; [];
Example
python3Packages: with python3Packages; [
  # postgresql support
  psycopg2
];
declared in: nixos/modules/services/home-automation/home-assistant.nixView source on NixOS/nixpkgs →