Files
nixos-dotfiles/modules/development/clang.nix
T
2026-07-12 12:59:56 -05:00

19 lines
218 B
Nix

{
lib,
config,
pkgs,
...
}:
let
cfg = config.workstation.development.clang;
in
{
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
gcc
cmake
clang
];
};
}