summary refs log tree commit diff stats
path: root/system/modules/development/base.nix
diff options
context:
space:
mode:
authorAlan Pearce2019-10-04 23:26:28 +0200
committerAlan Pearce2019-10-05 00:53:02 +0200
commit725ce0a79072b281045fe8c7c61fa244dd11a79b (patch)
treef44412569d810753c4cbe1f6a852c6746138849c /system/modules/development/base.nix
parent431fd28d2d60fcc5bc28ffbab5c7ccbd9cec2832 (diff)
downloadnixfiles-725ce0a79072b281045fe8c7c61fa244dd11a79b.tar.lz
nixfiles-725ce0a79072b281045fe8c7c61fa244dd11a79b.tar.zst
nixfiles-725ce0a79072b281045fe8c7c61fa244dd11a79b.zip
Re-organise development configuration
Diffstat (limited to 'system/modules/development/base.nix')
-rw-r--r--system/modules/development/base.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/system/modules/development/base.nix b/system/modules/development/base.nix
deleted file mode 100644
index 63ee5b72..00000000
--- a/system/modules/development/base.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, pkgs, ... }:
-
-{ environment.systemPackages = 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 [
-    ]
-  );
-}