10 lines
115 B
Nix
10 lines
115 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.file.".clang-format".text = ''
|
|
---
|
|
Language: Cpp
|
|
BasedOnStyle: Google
|
|
'';
|
|
}
|