diff options
author | lassulus <lassulus@lassul.us> | 2021-02-10 23:28:30 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-02-10 23:51:20 +0100 |
commit | 5d0c18a7f62646ab80c8d191a7aaa9ccefc04df8 (patch) | |
tree | 9b8331c33984f686d03545038a29f750b0ab5ee2 /krebs/5pkgs | |
parent | 90782e21f8afd89aa408b2e9ea930a52c9d37889 (diff) |
home-assistant: import from unstablehass-fix
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r-- | krebs/5pkgs/simple/home-assistant.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/home-assistant.nix b/krebs/5pkgs/simple/home-assistant.nix new file mode 100644 index 000000000..58a6edf33 --- /dev/null +++ b/krebs/5pkgs/simple/home-assistant.nix @@ -0,0 +1,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 |