services-flake/flake.nix

29 lines
682 B
Nix
Raw Normal View History

{
outputs = _: {
processComposeModules.default = ./nix;
templates.default = {
description = "Example flake using process-compose-flake";
path = builtins.path { path = ./example; filter = path: _: baseNameOf path == "flake.nix"; };
};
2023-07-11 04:25:49 +03:00
lib = import ./nix/lib.nix;
2023-07-11 04:25:49 +03:00
# Config for https://github.com/srid/nixci
# To run this, `nix run github:srid/nixci`
nixci = let overrideInputs = { "services-flake" = ./.; }; in {
example = {
inherit overrideInputs;
dir = "./example";
};
test = {
inherit overrideInputs;
dir = "./test";
};
dev = {
dir = "./dev";
};
};
};
}