18 lines
378 B
Nix
18 lines
378 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [ inputs.treefmt-nix.flakeModule ];
|
|
|
|
perSystem =
|
|
{ ... }:
|
|
{
|
|
treefmt = {
|
|
# Used to find the project root
|
|
projectRootFile = "flake.nix";
|
|
programs.deadnix.enable = true;
|
|
programs.nixfmt.enable = true;
|
|
programs.shellcheck.enable = true;
|
|
programs.yamlfmt.enable = true;
|
|
};
|
|
};
|
|
}
|