Compare commits
No commits in common. "1f95f6d33ec6459a1314c38344e83949036bc7dd" and "631ab0144fc54c67d4d0456080b23a482cfaf996" have entirely different histories.
1f95f6d33e
...
631ab0144f
@ -66,9 +66,7 @@ in
|
|||||||
default = "info";
|
default = "info";
|
||||||
logs = { };
|
logs = { };
|
||||||
};
|
};
|
||||||
lovelace = {
|
lovelace = { };
|
||||||
mode = "yaml";
|
|
||||||
};
|
|
||||||
media_player = [ ];
|
media_player = [ ];
|
||||||
mobile_app = { };
|
mobile_app = { };
|
||||||
onkyo = { };
|
onkyo = { };
|
||||||
@ -271,6 +269,65 @@ in
|
|||||||
home-assistant-minimalist
|
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 =
|
customLovelaceModules =
|
||||||
(with pkgs.home-assistant-custom-lovelace-modules; [
|
(with pkgs.home-assistant-custom-lovelace-modules; [
|
||||||
bubble-card
|
bubble-card
|
||||||
@ -290,8 +347,6 @@ in
|
|||||||
lovelace-state-switch
|
lovelace-state-switch
|
||||||
lovelace-weather-radar-card
|
lovelace-weather-radar-card
|
||||||
]);
|
]);
|
||||||
|
|
||||||
lovelaceConfigWritable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
modules.services.borgmatic.directories = [
|
modules.services.borgmatic.directories = [
|
||||||
|
@ -26,7 +26,9 @@ buildNpmPackage rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.entrypoint = "auto-entities.js";
|
passthru = {
|
||||||
|
entrypoint = "auto-entities.js";
|
||||||
|
};
|
||||||
|
|
||||||
makeCacheWritable = true;
|
makeCacheWritable = true;
|
||||||
|
|
||||||
|
@ -24,8 +24,6 @@ buildNpmPackage rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.entrypoint = "floorplan.js";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Floorplan for Home Assistant";
|
description = "Floorplan for Home Assistant";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
@ -26,8 +26,6 @@ buildNpmPackage rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.entrypoint = "layout-card.js";
|
|
||||||
|
|
||||||
makeCacheWritable = true;
|
makeCacheWritable = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -26,8 +26,6 @@ buildNpmPackage rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.entrypoint = "my-cards.js";
|
|
||||||
|
|
||||||
makeCacheWritable = true;
|
makeCacheWritable = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -26,8 +26,6 @@ buildNpmPackage rec {
|
|||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.entrypoint = "state-switch.js";
|
|
||||||
|
|
||||||
makeCacheWritable = true;
|
makeCacheWritable = true;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user