Compare commits

..

No commits in common. "1f95f6d33ec6459a1314c38344e83949036bc7dd" and "631ab0144fc54c67d4d0456080b23a482cfaf996" have entirely different histories.

6 changed files with 63 additions and 14 deletions

View File

@ -66,9 +66,7 @@ in
default = "info";
logs = { };
};
lovelace = {
mode = "yaml";
};
lovelace = { };
media_player = [ ];
mobile_app = { };
onkyo = { };
@ -271,6 +269,65 @@ in
home-assistant-minimalist
];
config.lovelace.resources = [
{
url = "/local/nixos-lovelace-modules/auto-entities.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/bubble-card.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/bubble-popup-fix.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/button-card.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/card-mod.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/layout-card.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/light-entity-card.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/mini-graph-card-bundle.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/mini-media-player-bundle.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/my-cards.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/sankey-chart.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/simple-weather-card-bundle.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/state-switch.js";
type = "module";
}
{
url = "/local/nixos-lovelace-modules/weather-radar-card.js";
type = "module";
}
];
customLovelaceModules =
(with pkgs.home-assistant-custom-lovelace-modules; [
bubble-card
@ -290,8 +347,6 @@ in
lovelace-state-switch
lovelace-weather-radar-card
]);
lovelaceConfigWritable = true;
};
modules.services.borgmatic.directories = [

View File

@ -26,7 +26,9 @@ buildNpmPackage rec {
runHook postInstall
'';
passthru.entrypoint = "auto-entities.js";
passthru = {
entrypoint = "auto-entities.js";
};
makeCacheWritable = true;

View File

@ -24,8 +24,6 @@ buildNpmPackage rec {
runHook postInstall
'';
passthru.entrypoint = "floorplan.js";
meta = {
description = "Floorplan for Home Assistant";
longDescription = ''

View File

@ -26,8 +26,6 @@ buildNpmPackage rec {
runHook postInstall
'';
passthru.entrypoint = "layout-card.js";
makeCacheWritable = true;
meta = with lib; {

View File

@ -26,8 +26,6 @@ buildNpmPackage rec {
runHook postInstall
'';
passthru.entrypoint = "my-cards.js";
makeCacheWritable = true;
meta = with lib; {

View File

@ -26,8 +26,6 @@ buildNpmPackage rec {
runHook postInstall
'';
passthru.entrypoint = "state-switch.js";
makeCacheWritable = true;
meta = with lib; {