mirror of
https://github.com/rosenpass/rosenpass.git
synced 2026-06-12 19:11:19 -07:00
29 lines
475 B
Nix
29 lines
475 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Used to find the project root
|
|
projectRootFile = "flake.nix";
|
|
programs.nixfmt.enable = true;
|
|
programs.prettier = {
|
|
enable = true;
|
|
includes = [
|
|
"*.css"
|
|
"*.html"
|
|
"*.js"
|
|
"*.json"
|
|
"*.json5"
|
|
"*.md"
|
|
"*.mdx"
|
|
"*.yaml"
|
|
"*.yml"
|
|
];
|
|
excludes = [ "supply-chain/*" ];
|
|
};
|
|
programs.taplo = {
|
|
enable = true;
|
|
includes = [
|
|
"*.toml"
|
|
];
|
|
};
|
|
programs.rustfmt.enable = true;
|
|
}
|