2 Commits

Author SHA1 Message Date
dc6ee9b8bf home-assistant: Add ui-lovelace-minimalist
All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m52s
2025-01-26 18:59:34 +00:00
77fe9dc546 hass-browser-mod: init at 2.3.3 2025-01-26 18:54:52 +00:00
2 changed files with 21 additions and 0 deletions

View File

@ -273,6 +273,10 @@ in
zeroconf
];
customComponents = [
pkgs.ui-lovelace-minimalist
];
customLovelaceModules = with pkgs.home-assistant-custom-lovelace-modules; [
bubble-card
button-card

View 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 = "";
};
}