feat: add home-assistant-custom-lovelace-modules/bar-card

This commit is contained in:
Patrick 2025-01-28 21:01:26 +01:00
parent 0660c722cf
commit 86bb6fb118
No known key found for this signature in database
GPG key ID: 451F95EFB8BECD0F
6 changed files with 76 additions and 65 deletions

22
overlay.nix Normal file
View file

@ -0,0 +1,22 @@
inputs: final: prev:
prev.lib.composeManyExtensions (
# Order is important to allow using prev instead of final in more places to
# speed up evaluation.
(map (x: import x inputs) [
# No dependencies
./lib/types.nix
# No dependencies
./lib/misc.nix
# No dependencies
./lib/disko.nix
# Requires misc
./lib/net.nix
# Requires misc, types
./lib/wireguard.nix
])
++ [
(import ./pkgs)
]
)
final
prev