mirror of
https://github.com/juspay/services-flake.git
synced 2024-11-14 12:02:36 +03:00
11 lines
268 B
Nix
11 lines
268 B
Nix
|
{
|
||
|
outputs = _: {
|
||
|
processComposeModules.default = ./nix;
|
||
|
|
||
|
templates.default = {
|
||
|
description = "Example flake using process-compose-flake";
|
||
|
path = builtins.path { path = ./example; filter = path: _: baseNameOf path == "flake.nix"; };
|
||
|
};
|
||
|
};
|
||
|
}
|