System/applications/devel-core.nix

28 lines
501 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
2022-04-19 21:13:40 -04:00
delta
2021-12-20 13:37:26 -05:00
# General development requirements
python3Full
cmake
libtool
gnumake
nixpkgs-fmt
# jq for interacting with JSON
jq
2022-04-19 21:13:40 -04:00
jc
# Viewer for deeply nested JSON
fx
2021-12-20 13:37:26 -05:00
# Direnv for nix-shell niceness
direnv
2022-06-03 02:31:14 -04:00
# Sops for secrets
sops
2021-12-20 13:37:26 -05:00
];
}