xieme-art/nix/treefmt.nix
Yorick Barbanneau ffea2b6857 ci: rework flake integration
Now Use flake part and integrate a build system using nix package building and treefmt-nix as a flake-part module
2025-05-04 23:44:51 +02:00

18 lines
262 B
Nix

_: {
config.perSystem =
{
config,
inputs',
pkgs,
...
}:
{
treefmt = {
programs = {
shfmt.enable = true;
alejandra.enable = true;
nixfmt.enable = true;
};
};
};
}