Compare commits
2 Commits
master
...
dc6ee9b8bf
Author | SHA1 | Date | |
---|---|---|---|
dc6ee9b8bf
|
|||
77fe9dc546
|
@ -273,6 +273,10 @@ in
|
|||||||
zeroconf
|
zeroconf
|
||||||
];
|
];
|
||||||
|
|
||||||
|
customComponents = [
|
||||||
|
pkgs.ui-lovelace-minimalist
|
||||||
|
];
|
||||||
|
|
||||||
customLovelaceModules = with pkgs.home-assistant-custom-lovelace-modules; [
|
customLovelaceModules = with pkgs.home-assistant-custom-lovelace-modules; [
|
||||||
bubble-card
|
bubble-card
|
||||||
button-card
|
button-card
|
||||||
|
17
pkgs/hass-browser-mod/package.nix
Normal file
17
pkgs/hass-browser-mod/package.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
fetchFromGitHub,
|
||||||
|
buildHomeAssistantComponent,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildHomeAssistantComponent rec {
|
||||||
|
owner = "thomasloven";
|
||||||
|
domain = "browser_mod";
|
||||||
|
version = "2.3.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = owner;
|
||||||
|
repo = "hass-browser_mod";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "";
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user