summary refs log tree commit diff stats
path: root/user/settings/development
diff options
context:
space:
mode:
authorAlan Pearce2023-08-06 20:10:54 +0200
committerAlan Pearce2023-08-06 20:13:34 +0200
commitd1518575a8a387b7c22ab8a1d51109a2a4126fe9 (patch)
treedb5dc4c4447a8a8830ae635b18c7cf03635338c1 /user/settings/development
parentbd5657e49a14242cfc5aa604e75eb7ce58a76467 (diff)
downloadnixfiles-d1518575a8a387b7c22ab8a1d51109a2a4126fe9.tar.lz
nixfiles-d1518575a8a387b7c22ab8a1d51109a2a4126fe9.tar.zst
nixfiles-d1518575a8a387b7c22ab8a1d51109a2a4126fe9.zip
development: also install httping on darwin (not broken)
Diffstat (limited to 'user/settings/development')
-rw-r--r--user/settings/development/base.nix18
1 files changed, 7 insertions, 11 deletions
diff --git a/user/settings/development/base.nix b/user/settings/development/base.nix
index 63c4adcd..1bbbc620 100644
--- a/user/settings/development/base.nix
+++ b/user/settings/development/base.nix
@@ -30,19 +30,15 @@ in
       jq
       miller
       watchexec
+      httping
 
       docker-compose
-    ]
-    ++ (
-      if !stdenv.isDarwin
-      then [
-        httping
-      ] else [
-        lima-bin
-        colima
-        docker-client
-      ]
-    );
+    ] ++ lib.optionals stdenv.isDarwin [
+      lima-bin
+      colima
+      docker-client
+    ];
+
   nixpkgs.overlays = [
     (self: super: {
       ripgrep = super.ripgrep.override { withPCRE2 = true; };