blob: c6e48120a78cc9484a5ef932a97eb444804c9118 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ pkgs, ... }:
{
projectRootFile = "flake.nix";
programs.nixfmt.enable = true;
programs.clang-format.enable = true;
# Exclude files formatted by hand.
settings.formatter.clang-format.excludes = [ "examples/2048.c" ];
}
|