mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
4959eb8d0c
Signed-off-by: magic_rb <magic_rb@redalder.org>
16 lines
485 B
Nix
16 lines
485 B
Nix
{ inputs, lib, ... }:
|
|
let
|
|
callPackage = lib.callPackageWith {
|
|
inherit (inputs)
|
|
nixpkgs nixng;
|
|
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 {};
|
|
}
|