cntr 1.6.1

A container debugging tool based on FUSE
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ inputs, ... }:
{
  imports = [ inputs.treefmt-nix.flakeModule ];

  perSystem =
    { pkgs, ... }:
    {
      treefmt = {
        # Used to find the project root
        projectRootFile = "flake.lock";

        programs.nixfmt.enable = !pkgs.hostPlatform.isRiscV64;
        programs.rustfmt.enable = true;
      };
    };
}