nixos/modules/dev/cc.nix
2023-07-31 16:15:24 +03:00

26 lines
413 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
gdb
pkg-config
# lsp
clang-tools
cmake-language-server
# lint
cpplint
];
};
}