infra/flake/den/flake.nix

17 lines
498 B
Nix
Raw Permalink Normal View History

2025-12-01 13:23:24 +07:00
{
outputs = _: {
flakeModule = ./nix/flakeModule.nix;
templates = {
default.path = ./templates/default;
default.description = "Minimal configuration";
examples.path = ./templates/examples;
examples.description = "API examples and CI";
bogus.path = ./templates/bogus;
bogus.description = "For bug reproduction";
};
packages = import ./nix/template-packages.nix;
namespace = import ./nix/namespace.nix;
lib = import ./nix/lib.nix;
};
}