Compare commits
2 Commits
dc6ee9b8bf
...
e6bad13cfd
Author | SHA1 | Date | |
---|---|---|---|
e6bad13cfd | |||
6dad981103 |
@ -273,14 +273,23 @@ in
|
||||
zeroconf
|
||||
];
|
||||
|
||||
customLovelaceModules = with pkgs.home-assistant-custom-lovelace-modules; [
|
||||
bubble-card
|
||||
button-card
|
||||
mushroom
|
||||
sankey-chart
|
||||
universal-remote-card
|
||||
# zigbee2mqtt-networkmap
|
||||
customComponents = [
|
||||
pkgs.ui-lovelace-minimalist
|
||||
];
|
||||
|
||||
customLovelaceModules =
|
||||
with pkgs.home-assistant-custom-lovelace-modules;
|
||||
[
|
||||
bubble-card
|
||||
button-card
|
||||
mushroom
|
||||
sankey-chart
|
||||
universal-remote-card
|
||||
# zigbee2mqtt-networkmap
|
||||
]
|
||||
++ [
|
||||
pkgs.hass-browser-mod
|
||||
];
|
||||
};
|
||||
|
||||
systemd.services.home-assistant.preStart = lib.mkForce "";
|
||||
|
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 = "sha256-lNZq7CeNiCAIM87sSUi9Jy9WS4G7QyvPoUJ8vJSAuHs=";
|
||||
};
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user