16 lines
217 B
Nix
16 lines
217 B
Nix
{ ... }:
|
|
{
|
|
projectRootFile = "flake.nix";
|
|
programs = {
|
|
nixfmt = {
|
|
enable = true;
|
|
strict = true;
|
|
};
|
|
prettier = {
|
|
enable = true;
|
|
};
|
|
taplo = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|