nixpkgs VS Home Assistant

Compare nixpkgs vs Home Assistant and see what are their differences.

Home Assistant

:house_with_garden: Open source home automation that puts local control and privacy first. (by home-assistant)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
nixpkgs Home Assistant
971 1,411
15,581 68,508
4.9% 1.5%
10.0 10.0
5 days ago 3 days ago
Nix Python
MIT License Apache License 2.0
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.

nixpkgs

Posts with mentions or reviews of nixpkgs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-22.
  • Eelco Dolstra's leadership is corrosive to the Nix project
    5 projects | news.ycombinator.com | 22 Apr 2024
    > I'm sure that somewhere buried in a wall of text they state what this is all about

    If they could've, they would've. Unfortunately, this has been a problem in the Nix community for a while. No one mentioned in this letter is an "abusive" "right-wing" "concern troll" by any stretch. None of evidence buried in this wall of text supports that assumption. Whether the authors realize it or not, this letter consists almost entirely of ad hominems and accusations of ulterior motives.

    Just as an aide, I wrote "almost," because I do think the handling of the sponsorship was an issue here despite the letter framing this as not the central issue. Military sponsors aren't a great fit for a community of international volunteers, especially one trying to put AI on drones. I'm not comfortable with that either. But were the accused members of the Nix community abusing and concern trolling to push a right wing agenda? Definitely not.

    The other issues though, are just disagreements. The letter is taking screenshots of random disagreements and claiming it as proof of, again, "abusive" "right-wing" "concern trolling" behavior. Some vocal members of the Nix community love to do this. All. The. Time.

    They disagreed with me. They didn't do this or that. That means they must be against social justice. They're persecuting minorities. They're concern trolling. Oh, here's another person trying to stay away from all the arguing. They're complicit too.

    This is the stated mentality of these vocal members. This is also the reason I avoid posting in NixOS Discourse and Matrix off topic chat channels. It just feels like some are more interested playing Game of Thrones. It's not representative of the community, but I don't want to attract unnecessary attention from the vocal few.

    Actual concrete example. The Nixpkgs repository includes a file containing a list of maintainers. A PR was made against this file, and one member of the community asked the PR author if they can make the maintainer name the same as their GitHub username.

    https://github.com/NixOS/nixpkgs/pull/120729#discussion_r621...

    And this exploded. Way out of proportion. Some were pouncing on the member who made that comment. To me, the response seems far more abusive than the original comment ever was.

    https://github.com/NixOS/nixpkgs/pull/120729#discussion_r621...

    Accusations were flown, like "denying someone of a name." Seriously?

    https://github.com/NixOS/nixpkgs/pull/120729#discussion_r622...

    I feel bad about bringing this up, but it only seems fair to show the whole picture given the situation.

  • 3rd Edition of Programming: Principles and Practice Using C++ by Stroustrup
    6 projects | news.ycombinator.com | 19 Apr 2024
    For a single file script, nix can make the package management quite easy: https://github.com/NixOS/nixpkgs/blob/master/doc/languages-f...

    For example,

    ```

  • NixOS/nixpkgs: There isn't a clear canonical way to refer to a specific package
    1 project | news.ycombinator.com | 9 Apr 2024
  • NixOS Is Not Reproducible
    1 project | news.ycombinator.com | 7 Apr 2024
    Yes, Nix doesn't actually ensure that the builds are deterministic. In fact it works just fine if they aren't. There are packages in nixpkgs that aren't reproducible: https://github.com/NixOS/nixpkgs/issues?q=is%3Aopen+is%3Aiss...
  • The xz attack shell script
    5 projects | news.ycombinator.com | 2 Apr 2024
    I'm not familiar with Bazel, but Nix in it's current form wouldn't have solved this attack. First of all, the standard mkDerivation function calls the same configure; make; make install process that made this attack possible. Nixpkgs regularly pulls in external resources (fetchUrl and friends) that are equally vulnerable to a poisoned release tarball. Checkout the comment on the current xz entry in nixpkgs https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/comp...
  • Debian Git Monorepo
    4 projects | news.ycombinator.com | 2 Apr 2024
    NixOS uses a monorepo and I think everyone's love it.

    I love being able to easily grep through all the packages source code and there's regularly PRs that harmonizes conventions across many packages.

    Nixpkgs doesn't include the packaged software source code, so it's a lot more practical than what Debian is doing.

    https://github.com/NixOS/nixpkgs

  • From xz to ibus: more questionable tarballs
    5 projects | news.ycombinator.com | 1 Apr 2024
    In this specific case, nix uses fetchFromGitHub to download the source archive, which are generated by GitHub for the specified revision[1]. Arch seems to just download the tarball from the releases page[2].

    [1]: https://github.com/NixOS/nixpkgs/blob/3c2fdd0a4e6396fc310a6e...

    [2]: https://gitlab.archlinux.org/archlinux/packaging/packages/ib...

  • GitHub Disabled the Xz Repo
    5 projects | news.ycombinator.com | 29 Mar 2024
    True, but irrelevant -- _some packages_, _somewhere_, do depend on xz, which, if built, requires pulling the source from GitHub (see the default.nix: https://github.com/NixOS/nixpkgs/blob/nixos-23.11/pkgs/tools...)

    It's not the vulnerability that's a problem right now (NixOS was protected by a couple of factors) but rather GitHub's hamfisted response.

    That is the problem.

  • Combining Nix with Terraform for better DevOps
    4 projects | dev.to | 19 Mar 2024
    We’ve noticed that some users have been asking about how to use older versions of Terraform in their Nix setups [1, 2]. This is an example of the diverse needs of people and the importance of maintaining backward compatibility. We hope that nixpkgs-terraform will be a useful tool for these users.
  • Nix is a better Docker image builder than Docker's image builder
    21 projects | news.ycombinator.com | 15 Mar 2024
    I think whateveracct was referring to is this link:

    https://github.com/NixOS/nixpkgs/blob/master/pkgs/developmen...

    What that file is doing, is building a package, and it essentially is a combination of what Makefile and what RPM spec file does.

    I don't know if you're familiar with those tools, but if you aren't it takes some time to know them enough to understand what is happening. So why would be different here?

Home Assistant

Posts with mentions or reviews of Home Assistant. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-12.

What are some alternatives?

When comparing nixpkgs and Home Assistant you can also consider the following projects:

asdf - Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more

Node RED - Low-code programming for event-driven applications

Home Manager using Nix - Manage a user environment using Nix [maintainer=@rycee]

Domoticz - Open source Home Automation System

git-lfs - Git extension for versioning large files

homebridge - HomeKit support for the impatient.

easyeffects - Limiter, compressor, convolver, equalizer and auto volume and many other plugins for PipeWire applications

CasaOS - CasaOS - A simple, easy-to-use, elegant open-source Personal Cloud system.

spack - A flexible package manager that supports multiple versions, configurations, platforms, and compilers.

FHEM - Branch 'master' is an unofficial read-only-mirror of https://svn.fhem.de/fhem/trunk which is updated once a day. (branch sf_old a mirror of the old repo: svn://svn.code.sf.net/p/fhem/code/trunk)

waydroid - Waydroid uses a container-based approach to boot a full Android system on a regular GNU/Linux system like Ubuntu.

Mycodo - An environmental monitoring and regulation system