Collection of nix flake templates

c: add clang

I forgot to add a C compiler

I likely won't be adding build systems here since there are a lot of
different build systems that can be used with C

yemou.pink a60b9480 c461bc5e

verified
+6 -1
+6 -1
c/flake.nix
··· 13 13 formatter = forSystems (pkgs: pkgs.nixfmt-tree.override { settings.formatter.nixfmt.options = [ "-w 120" ]; }); 14 14 15 15 devShells = forSystems (pkgs: { 16 - default = pkgs.mkShell { buildInputs = with pkgs; [ clang-tools ]; }; 16 + default = pkgs.mkShell { 17 + buildInputs = with pkgs; [ 18 + clang 19 + clang-tools 20 + ]; 21 + }; 17 22 }); 18 23 }; 19 24 }