mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
20 lines
346 B
Nix
20 lines
346 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
|
|
go
|
|
];
|
|
};
|
|
}
|