summaryrefslogtreecommitdiff
path: root/flake.nix
blob: e8ec59195c7d11f965e5e9ddda1d1cc6f818c586 (plain)
1
2
3
4
5
6
7
8
9
10
11
{
  description = "Simple, lightweight, and reusable Nix `flake check`s";

  outputs = _: {
    lib = import ./.;
    templates.default = {
      path = toString ./template;
      description = "a starting place for flake-checks";
    };
  };
}