summary refs log tree commit diff stats
path: root/modules/development/base.nix
diff options
context:
space:
mode:
authorAlan Pearce2018-10-21 14:55:27 +0200
committerAlan Pearce2018-10-21 15:01:02 +0200
commit086e0f60c01730cacd716f14115bef99774f6957 (patch)
tree864771585e2c27878d63520d39589ff2c3740517 /modules/development/base.nix
parente30c6624e41d8b8b55085897a57f9c9c0c6c3edf (diff)
downloadnixfiles-086e0f60c01730cacd716f14115bef99774f6957.tar.lz
nixfiles-086e0f60c01730cacd716f14115bef99774f6957.tar.zst
nixfiles-086e0f60c01730cacd716f14115bef99774f6957.zip
Setup trillian (MacBook)
Diffstat (limited to 'modules/development/base.nix')
-rw-r--r--modules/development/base.nix15
1 files changed, 10 insertions, 5 deletions
diff --git a/modules/development/base.nix b/modules/development/base.nix
index 12145a55..b0ab4e3b 100644
--- a/modules/development/base.nix
+++ b/modules/development/base.nix
@@ -10,18 +10,23 @@
     go
     gocode
 
-    ldns
-    httping
     wrk
-    whois
 
     ag
     ripgrep
 
     httpie
-    http-prompt
     jq
 
     discount
-  ];
+  ] ++ (
+    if !stdenv.isDarwin
+    then [
+      whois
+      ldns
+      httping
+      http-prompt
+    ] else [
+    ]
+  );
 }