nixos/modules/dev/cc.nix
2023-07-10 16:36:02 +03:00

21 lines
328 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
];
};
}