all repos — nixfiles @ c2e7dc28a2ff71c412f2f5ac3391fbc53a34f80c

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

dev/base: install zeal on non-darwin
Alan Pearce alan@alanpearce.eu
Mon, 15 Apr 2024 20:21:56 +0200
commit

c2e7dc28a2ff71c412f2f5ac3391fbc53a34f80c

parent

2928b1dcb75be3c74f24c8df174beab469ff0ba8

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M user/settings/development/base.nixuser/settings/development/base.nix
@@ -30,11 +30,13 @@ entr       httping
 
       docker-compose
-    ] ++ lib.optionals stdenv.isDarwin [
+    ] ++ (if stdenv.isDarwin then [
       lima-bin
       colima
       docker-client
-    ];
+    ] else [
+      zeal
+    ]);
 
   home.sessionVariables = {
     FLY_NO_UPDATE_CHECK = "1";