Files
nixos-dotfiles/modules/coding/langs/c.nix
2025-04-13 15:09:14 +08:00

23 lines
258 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeSwitch {
inherit config;
optionName = "c";
optionPath = [
"coding"
"langs"
"c"
];
config' = {
my.home.home.packages = with pkgs; [
gcc
clang-tools
cmake
];
};
}