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
'';
}

View File

@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./clang.nix
];
}

View File

@@ -15,12 +15,11 @@
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
./IDEs
./development
./tools
./dotfiles
./git
./IDEs
./tools
./zsh
];