20 lines
346 B
Nix
Raw Normal View History

2023-07-10 17:52:34 -07:00
# 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 {
2023-09-17 17:04:49 -07:00
2023-07-10 17:52:34 -07:00
environment.systemPackages = with pkgs; [
2023-09-12 18:59:42 -07:00
cmake
gcc
2023-09-12 21:34:40 -07:00
coreutils
gnumake
go
2023-07-10 17:52:34 -07:00
];
};
}