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