nix-config

My personal nixos and home-manager configuration
Log | Files | Refs | README

commit 565860d64f4cfdaf06ee46c5ca03793cf23a2538
parent 03c8e3534b8a06aaa84b39b10146b434dd070247
Author: benjamin paul <bpaul@bpaul.xyz>
Date:   Sun,  4 Jul 2021 17:43:53 +1000

Added clang tools to the c dev module.

Diffstat:
Mhome/modules/dev/c.nix | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/home/modules/dev/c.nix b/home/modules/dev/c.nix @@ -11,6 +11,8 @@ with lib; # Other modules depend on whether this is enabled or not home.packages = with pkgs; [ ccls + clang-tools + clang-manpages gcc ]; };