mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 03:26:13 +01:00
15 lines
319 B
Nix
15 lines
319 B
Nix
{ inputs, lib, ... }:
|
|
let
|
|
callPackage = lib.callPackagesWith {
|
|
inherit (inputs.nixng.nglib)
|
|
makeSystem;
|
|
inherit (inputs)
|
|
hydra
|
|
nixpkgs;
|
|
};
|
|
in
|
|
{
|
|
flake.nixngConfigurations.hydraPostgreSQL = callPackage ./postgresql.nix {};
|
|
flake.nixngConfigurations.hydra = callPackage ./hydra.nix {};
|
|
}
|