1
0
Fork 0
selfhostblocks/all-packages.nix
2023-02-19 20:37:52 -08:00

16 lines
300 B
Nix

{ distribution ? null
, services ? null
, system ? builtins.currentSystem
, pkgs ? import <nixpkgs> { inherit system; }
}:
let
callPackage = pkgs.lib.callPackageWith (pkgs // self);
self = {
PostgresDB = callPackage ./PostgresDB {};
TtrssService = callPackage ./Ttrss {};
};
in
self