all repos — nixfiles @ d1518575a8a387b7c22ab8a1d51109a2a4126fe9

System and user configuration, managed by nix and home-manager

development: also install httping on darwin (not broken)
Alan Pearce alan@alanpearce.eu
Sun, 06 Aug 2023 20:10:54 +0200
commit

d1518575a8a387b7c22ab8a1d51109a2a4126fe9

parent

bd5657e49a14242cfc5aa604e75eb7ce58a76467

1 files changed, 7 insertions(+), 11 deletions(-)

jump to
M user/settings/development/base.nixuser/settings/development/base.nix
@@ -30,19 +30,15 @@ htmlq       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; };