Add 'system/' from commit '5016c7440ad771fd990e1aa142fc4de0bdc382bd' git-subtree-dir: system git-subtree-mainline: ec7f1357d16ff2f4aa7430a2940a0b9519018595 git-subtree-split: 5016c7440ad771fd990e1aa142fc4de0bdc382bd
1 file changed, 32 insertions(+), 0 deletions(-)
changed files
A system/modules/development/base.nix
@@ -0,0 +1,32 @@ +{ config, pkgs, ... }: + +{ environment.systemPackages = with pkgs; [ + gitAndTools.gitFull + gitAndTools.git-extras + git-lfs + + checkbashisms + editorconfig-core-c + go + + wrk + + ag + (ripgrep.override { withPCRE2 = true; }) + + httpie + jq + + discount + ] ++ ( + if !stdenv.isDarwin + then [ + whois + ldns + httping + http-prompt + firefox-devedition-bin + ] else [ + ] + ); +}