1
0
Fork 0
mirror of https://github.com/ElementsProject/lightning.git synced 2025-03-13 02:58:21 +01:00
core-lightning/nix/treefmt.nix

11 lines
169 B
Nix

{ ... }:
{
perSystem =
{ pkgs, lib, ... }:
{
treefmt = {
projectRootFile = "flake.nix";
programs.nixfmt.enable = true;
};
};
}