blob: 58a6edf333213b1b41322c7631a5dd64961a490b (
plain)
1
2
3
4
5
6
7
8
|
{ pkgs, lib, ... }: let
unstable = pkgs.fetchFromGitHub {
owner = "nixos";
repo = "nixpkgs";
rev = (lib.importJSON ../../nixpkgs-unstable.json).rev;
sha256 = (lib.importJSON ../../nixpkgs-unstable.json).sha256;
};
in (import unstable {}).home-assistant
|