codeberg-cli 0.5.5

CLI Tool for codeberg similar to gh and glab
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ inputs, ... }:
{
  imports = [ inputs.treefmt-nix.flakeModule ];

  perSystem = {
    treefmt = {
      projectRoot = inputs.self;
      programs = {
        nixfmt.enable = true;
        rustfmt.enable = true;
        # needs fine tuning, "catches" too much nonsensical stuff
        # typos.enable = true;
        # TODO: needs configuration
        # taplo.enable = true;
      };
    };
  };
}