mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-24 23:18:25 +01:00
12 lines
169 B
Nix
12 lines
169 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
perSystem =
|
||
|
{ pkgs, lib, ... }:
|
||
|
{
|
||
|
treefmt = {
|
||
|
projectRootFile = "flake.nix";
|
||
|
programs.nixfmt.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|