Add clang-format to home-manager

Signed-off-by: Noah Knegt <git@noahknegt.com>
This commit is contained in:
2025-07-03 21:32:43 +02:00
parent 004756d9ae
commit a45e02881a
3 changed files with 19 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
home.file.".clang-format".text = ''
---
Language: Cpp
BasedOnStyle: Google
'';
}