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; [
|
2024-04-21 10:37:47 -07:00
|
|
|
cmake # Cross-platform build system generator.
|
|
|
|
gcc # GNU Compiler Collection, a compiler system for programming languages.
|
|
|
|
coreutils # Collection of basic file, shell, and text manipulation utilities.
|
|
|
|
gnumake # GNU Make, a build automation tool.
|
|
|
|
go # Programming language developed by Google, known for its simplicity and efficiency.
|
2024-04-22 22:14:55 -07:00
|
|
|
nixpkgs-lint
|
|
|
|
nixpkgs-fmt
|
2023-07-10 17:52:34 -07:00
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|