From 725ce0a79072b281045fe8c7c61fa244dd11a79b Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 4 Oct 2019 23:26:28 +0200 Subject: Re-organise development configuration --- user/modules/development/base.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 user/modules/development/base.nix (limited to 'user/modules/development/base.nix') diff --git a/user/modules/development/base.nix b/user/modules/development/base.nix new file mode 100644 index 00000000..3d908729 --- /dev/null +++ b/user/modules/development/base.nix @@ -0,0 +1,28 @@ +{ config, pkgs, ... }: + +{ home.packages = with pkgs; [ + 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 [ + ] + ); +} -- cgit 1.4.1