System/applications/devel-core.nix

26 lines
469 B
Nix
Raw Normal View History

2021-12-20 13:37:26 -05:00
# Core development libraries
{ config, pkgs, unstable, ... }:
{
environment.systemPackages = with pkgs; [
# Full version of git
unstable.gitFull
# Git addons
git-secret
unstable.git-lfs
# General development requirements
python3Full
cmake
gcc
unstable.libvterm-neovim
libtool
binutils
clang
gnumake
nixpkgs-fmt
# jq for interacting with JSON
jq
# Direnv for nix-shell niceness
direnv
];
}