Files
setup-machines/home-manager/dotfiles/clang.nix

10 lines
115 B
Nix
Raw Normal View History

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