Files
nixos-dotfiles/modules/coding/langs/c.nix

24 lines
281 B
Nix

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