devenv VS tmux

Compare devenv vs tmux and see what are their differences.

devenv

Fast, Declarative, Reproducible, and Composable Developer Environments (by cachix)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
devenv tmux
88 207
3,359 32,833
13.9% 1.9%
9.8 8.3
5 days ago 3 days ago
Nix C
Apache License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

devenv

Posts with mentions or reviews of devenv. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-12.
  • Fast, Declarative, Reproduble and Composable Developer Environments Using Nix
    5 projects | news.ycombinator.com | 12 Apr 2024
    I gave devenv multiple tries, and I am sorry to say there are multiple annoying issues that forced me to give up every time.

    Some of these 200+ issues are unsolved for a fairly long time.

    https://github.com/cachix/devenv/issues

    5 projects | news.ycombinator.com | 12 Apr 2024
  • Nix – A One Pager
    6 projects | news.ycombinator.com | 6 Apr 2024
    Software developers often want to customize:

    1. their home environments: for packages (some reach for brew on MacOS) and configurations (dotfiles, and some reach for stow).

    2. their development shells: for build dependencies (compilers, SDKs, libraries), tools (LSP, linters, formatters, debuggers), and services (runtime, database). Some reach for devcontainers here.

    3. or even their operating systems: for development, for CI, for deployment, or for personal use.

    Nix provision all of the above in the same language, with Nixpkgs, NixOS, home-manager, and devShells such as https://devenv.sh/. What's more, Nix is (https://nixos.org/):

    - reproducible: what works on your dev machine also works in CI in prod,

    - declarative: you version control and review your configurations and infrastructure as code, at a reasonable level of abstraction,

    - reliable: all changes are atomic with easy roll back.

  • Show HN: Lapdev, a new open-source remote dev environment management software
    7 projects | news.ycombinator.com | 23 Mar 2024
    https://devenv.sh/ and nix in general are great for setting up dev environments.
  • Show HN: Flox 1.0 – Open-source dev env as code with Nix
    17 projects | news.ycombinator.com | 13 Mar 2024
    > but worried that the development is not moving forward

    There is an open v1.0 PR: https://github.com/cachix/devenv/pull/1005

    17 projects | news.ycombinator.com | 13 Mar 2024
  • Ask HN: How can I make local dev with containers hurt less?
    7 projects | news.ycombinator.com | 11 Jan 2024
    It would be a smoother transition for most I imagine to use nix via https://devenv.sh/ even if only for it's excellent documentation.
    7 projects | news.ycombinator.com | 11 Jan 2024
    Yup, I haven’t tried it but there is https://devenv.sh which is built on top of nix and makes it simple.
  • Flakes aren't real and cannot hurt you: using Nix flakes the non-flake way
    6 projects | news.ycombinator.com | 9 Jan 2024
    Although Guix reads better than Nix (after all, it's Lisp), I found the support and resources available for learning severely lacking.

    Plus, you have to jump through hoops to install non-free software, which goes against the ethos of Guix anyway.

    IMHO, Nix is clearly "the winner" here and we'll see more and more adoption as it improves. Lots of folks are doing exciting work (see https://determinate.systems/, https://devenv.sh/, https://flakehub.com/). And the scale and organization around nixpkgs is damn impressive.

  • NixOS has one fatal flaw
    3 projects | news.ycombinator.com | 15 Dec 2023
    I don't think you can ever get Nix as simple as PNPM, simply because native libraries are sometimes annoying, need to be configured at build time to a greater degree and because the problem space it attacks is so much larger than PNPM, which only deals with the JS/Node.js ecosystem.

    However, I do think that there exist reasonable levels of abstraction that sacrifice some expressive power for simplicity and such systems could maybe expose a PNPM-like CLI. One example that comes to mind is devenv.nix [1]. While it doesn't yet have a CLI, its configuration file is YAML and relatively simple. I think there's more to be done in this space and I hope for tools that are easier to grasp in the future.

    > Nix package files evaluate down to configuration for the Nix package manager, but I haven’t ever seen a good explanation for the basic essentials underneath all the abstraction. Every guide I’ve learned from and all the package defs I’ve read seem to cargo cult many layers of mysterious config composing config. Without easy to learn essentials it’s difficult to grok the system as a whole.

    To me it sounds like the essential that you're referring to is the 'derivation' primitive, which is almost always hidden behind the mkDerivation abstraction from nixpkgs. This [2] blog post is an exploration of what exactly that means.

    I'd also love for the documentation situation to be much better, in particular in terms of official, curated resources. But I'm not convinced that you actually need to know the difference between derivation and mkDerivation to make effective use of Nix, because in practice you would always use the latter. That said, mkDerivation and the whole of nixpkgs is essentially a huge DSL (I believe this is what you meant when you said 'config composing config') that you do need to know and is woefully underdocumented.

    > I would love to adopt Nix for developer tooling for Notion’s engineers, but today it’s about infinity times easier to work around the limitations mentioned of Docker+Ubuntu+NPM than to work around the limitations of Nix.

    One approach I have taken to is to specify the environment in Nix, but then generate Docker devcontainers from it, so most people don't come into contact with Nix if they don't want to.

    [1] https://devenv.sh

    [2] https://ianthehenry.com/posts/how-to-learn-nix/derivations/

tmux

Posts with mentions or reviews of tmux. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-16.
  • Let's See Your Terminal
    2 projects | dev.to | 16 Apr 2024
    This got me thinking about my recent pivot, my switch to Neovim by way of LazyVim to write most of my code, and using tmux to keep terminal states alive after closing a session.
  • Just How Much Faster Are the Gnome 46 Terminals?
    8 projects | news.ycombinator.com | 8 Apr 2024
    I use Tmux. It's a terminal-agnostic multiplexer. Gives you persistence and automation superpowers.

    https://github.com/tmux/tmux/wiki

  • Easy Access to Terminal Commands in Neovim using FTerm
    6 projects | dev.to | 18 Mar 2024
    Having a common set of tools already set up in different windows or sessions in Tmux or Zellij is obviously an option, but there is a subset of us ( 👋 ) that would rather just have fingertip access to our common tools inside of our editor.
  • Zellij – A terminal workspace with batteries included (tmux alternative)
    8 projects | news.ycombinator.com | 5 Feb 2024
    After having spent too much time trying to get the simple https://github.com/csdvrx/sixel-tmux/ features into mainline tmux (last November https://github.com/tmux/tmux/issues/3753), maybe it'd be easier to jump ship as use zellij?

    Could anyone offer recommendations on "riced" zellij configuations, or just a demo where it shows doing with (say charts of disk usage per folder), watching a movie with mpv + keeping a vim to type on?

  • Automating the startup of a dev workflow
    2 projects | dev.to | 2 Jan 2024
    Well, I now use tmux and tmuxinator. I have had many failed tmux attempts over the years, but I'm firmly bedded in now.
  • Clipboards, Terminals, and Linux
    4 projects | dev.to | 28 Dec 2023
    Which leads me to clipboards. Linux has two of them! Adding to the interest, I typically use Neovim remotely, via an SSH connection to a Tmux session. And on my Linux system, I use urxvt as my terminal program. All of these are very UNIX-y tools, and somehow they all need to play nicely together.
  • Connecting Debugger to Rails Applications
    4 projects | dev.to | 19 Dec 2023
    The downside of overmind is that it requires tmux, which is a terminal multiplexer tool. If you don't already use tmux, I'd say it's probably not worth learning it just for the purposes of using overmind. But if you're like me and already know/use tmux, this can be a great solution to pursue.
  • Enchula Mi Consola
    11 projects | dev.to | 19 Dec 2023
  • Pimp your CLI
    13 projects | dev.to | 19 Dec 2023
    As a developer, the command line is one of the tools you will be using most frequently. It can be intimidating to venture into the world of CLI tooling but I can assure you it is one of the most rewarding experiences too. In this post I want to walk ya'll through my personal CLI setup. It is based on 3 technologies which I'll coin as the "Holy Trinity" of the command line: TMUX, ZSH, & Neovim.
  • Day 5 - More or less...
    3 projects | /r/linuxupskillchallenge | 7 Dec 2023
    After that, you can go up a notch and try to have several shell sessions open at the same time in the same terminal window with a terminal multiplexer. Try screen - that's a little simpler and maybe too terse in the beginning - or tmux, that have many features and colors. There are so much material out there on "how to customize your tmux", have fun.

What are some alternatives?

When comparing devenv and tmux you can also consider the following projects:

zellij - A terminal workspace with batteries included

kitty - Cross-platform, fast, feature-rich, GPU based terminal

tilix - A tiling terminal emulator for Linux using GTK+ 3

toggleterm.nvim - A neovim lua plugin to help easily manage multiple terminal windows

i3 - A tiling window manager for X11

devbox - Instant, easy, and predictable development environments

Mosh - Mobile Shell

emacs-theme-gruvbox - Gruvbox is a retro groove color scheme for Emacs. Port of the Vim version.

LDWin - Link Discovery for Windows

fish-shell - The user-friendly command line shell.

wezterm - A GPU-accelerated cross-platform terminal emulator and multiplexer written by @wez and implemented in Rust

LazyVim - Neovim config for the lazy