services-flake/flake.nix
2023-06-19 17:56:18 -04:00

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"; };
};
};
}