process-compose-flake/flake.nix

11 lines
267 B
Nix
Raw Permalink Normal View History

2022-12-08 23:28:28 +03:00
{
2023-06-09 22:47:28 +03:00
outputs = _: {
2023-06-09 21:12:46 +03:00
flakeModule = ./nix/flake-module.nix;
2023-06-12 23:41:22 +03:00
templates.default = {
description = "Example flake using process-compose-flake";
path = builtins.path { path = ./example; filter = path: _: baseNameOf path == "flake.nix"; };
};
2022-12-08 23:28:28 +03:00
};
}