mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
e60deab017
Signed-off-by: Magic_RB <magic_rb@redalder.org>
14 lines
307 B
Nix
14 lines
307 B
Nix
{ inputs, lib, ... }:
|
|
let
|
|
callPackage = lib.callPackagesWith {
|
|
inherit (inputs.nixng.nglib)
|
|
makeSystem;
|
|
inherit (inputs)
|
|
nixpkgs;
|
|
};
|
|
in
|
|
{
|
|
flake.nixngConfigurations.hydraPostgreSQL = callPackage ./postgresql.nix {};
|
|
flake.nixngConfigurations.hydra = callPackage ./hydra.nix {};
|
|
}
|