diff options
author | Alan Pearce | 2024-04-15 20:21:56 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-15 20:22:56 +0200 |
commit | c2e7dc28a2ff71c412f2f5ac3391fbc53a34f80c (patch) | |
tree | 24604686246bb771c6aef79aaa65ec6085be7ece /user/settings/development | |
parent | 2928b1dcb75be3c74f24c8df174beab469ff0ba8 (diff) | |
download | nixfiles-c2e7dc28a2ff71c412f2f5ac3391fbc53a34f80c.tar.lz nixfiles-c2e7dc28a2ff71c412f2f5ac3391fbc53a34f80c.tar.zst nixfiles-c2e7dc28a2ff71c412f2f5ac3391fbc53a34f80c.zip |
dev/base: install zeal on non-darwin
Diffstat (limited to 'user/settings/development')
-rw-r--r-- | user/settings/development/base.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/user/settings/development/base.nix b/user/settings/development/base.nix index 9f0505fa..ac9aaa5f 100644 --- a/user/settings/development/base.nix +++ b/user/settings/development/base.nix @@ -30,11 +30,13 @@ 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"; |