2023-09-17 17:04:49 -07:00

19 lines
337 B
Nix

# coding stuff for all the languages
{ config, lib, pkgs, user, ... }:
let
cfg = config.modules.devel.tooling;
in {
options.modules.devel.tooling.enable = lib.mkEnableOption "tooling";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
cmake
gcc
coreutils
gnumake
];
};
}