mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
033bdd1210
Signed-off-by: Magic_RB <magic_rb@redalder.org>
16 lines
479 B
Nix
16 lines
479 B
Nix
{ inputs, lib, ... }:
|
|
let
|
|
callPackage = lib.callPackageWith {
|
|
inherit (inputs)
|
|
nixpkgs;
|
|
inherit (inputs.nixng.nglib)
|
|
makeSystem;
|
|
};
|
|
in
|
|
{
|
|
flake.nixngConfigurations.homeAssistant = callPackage ./home-assistant.nix {};
|
|
flake.nixngConfigurations.homeAssistantPostgresql = callPackage ./postgresql.nix {};
|
|
flake.nixngConfigurations.zigbee2mqtt = callPackage ./zigbee2mqtt.nix {};
|
|
flake.nixngConfigurations.mosquitto = callPackage ./mosquitto.nix {};
|
|
}
|