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