2024-08-01 17:01:02 +00:00
|
|
|
_: {
|
|
|
|
# Used to find the project root
|
|
|
|
projectRootFile = "flake.nix";
|
|
|
|
|
|
|
|
# Files not to format.
|
2024-08-02 20:11:16 +00:00
|
|
|
settings.global.excludes = [
|
|
|
|
".editorconfig"
|
|
|
|
"LICENSE"
|
|
|
|
];
|
2024-08-01 17:01:02 +00:00
|
|
|
|
|
|
|
# nix
|
|
|
|
programs.nixfmt.enable = true; # As of 2024-07-30 this is nixfmt-rfc-style.
|
|
|
|
programs.statix.enable = true;
|
|
|
|
programs.deadnix.enable = true;
|
|
|
|
|
|
|
|
# markdown
|
2024-08-02 20:11:16 +00:00
|
|
|
programs.prettier = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
editorconfig = true;
|
|
|
|
};
|
|
|
|
};
|
2024-08-01 17:01:02 +00:00
|
|
|
}
|