nixos/modules/dev/cc.nix
2023-07-09 15:00:42 +03:00

24 lines
368 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.cc;
in
{
options.modules.dev.cc = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
gcc
gnumake
cmake
clang
# lsp
clang-tools
# lint
cpplint
gdb
];
};
}