mirror of
https://github.com/nix-community/flakelight.git
synced 2025-02-15 08:59:23 +01:00
8 lines
177 B
Nix
8 lines
177 B
Nix
_: {
|
|
devTools = pkgs: with pkgs; [ nixpkgs-fmt nodePackages.prettier ];
|
|
formatters = {
|
|
"*.nix" = "nixpkgs-fmt";
|
|
"*.md | *.json | *.yml" = "prettier --write";
|
|
};
|
|
}
|