include-utils 0.2.4

mdBook-like include macro as the powerful replacement for the standard `include_str` macro.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# treefmt.nix
{ pkgs, ... }:
{
  # Used to find the project root
  projectRootFile = "flake.nix";

  programs.nixpkgs-fmt.enable = true;
  programs.rustfmt = {
    enable = true;
    package = pkgs.rustToolchains.nightly;
  };
  programs.beautysh.enable = true;
  programs.deno.enable = true;
  programs.taplo.enable = true;
}