18 lines
205 B
Nix
Executable File
18 lines
205 B
Nix
Executable File
{ ... }:
|
|
{
|
|
projectRootFile = "flake.nix";
|
|
|
|
programs = {
|
|
nixfmt = {
|
|
enable = true;
|
|
strict = true;
|
|
};
|
|
};
|
|
|
|
settings = {
|
|
global = {
|
|
excludes = [ ".envrc" ];
|
|
};
|
|
};
|
|
}
|