nix VS nixos-mailserver

Compare nix vs nixos-mailserver and see what are their differences.

nix

A declaratively managed computing environment for rraval (by rraval)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
nix nixos-mailserver
2 12
12 -
- -
7.9 -
3 days ago -
Nix
- -
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.

nix

Posts with mentions or reviews of nix. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-06-02.
  • NixOS 21.05 Released
    39 projects | news.ycombinator.com | 2 Jun 2021
    I was able to make the switch over cold turkey after ~9 years of ArchLinux.

    By sheer happenstance, I blogged earlier this week about one particular killer feature that doesn't get enough air time: https://news.ycombinator.com/item?id=27344677

    My not-flake-yet configuration can be found at https://github.com/rraval/nix

  • Nix solves the package manager ejection problem
    4 projects | news.ycombinator.com | 31 May 2021
    > How do NixOS users typically manage software that is not a Nix package

    By writing a Nix package for it (I don't mean for this to sound flippant, tone is a bit hard to convey over text).

    For example I have this alpha quality rust binary that I'm developing but I also want a stable version installed at the OS level. I write a Nix package and simply compose it into my overall NixOS configuration alongside the more official Nixpkgs: https://github.com/rraval/nix/blob/master/git-nomad.nix

    > like a source code tarball where you would traditionally run configure && make && make install?

    Nix has a bunch of defaults that make a conventional package like this straightforward.

    Here's a package for a vanilla C binary + library that does the `autoreconf && ./configure && make && make install` dance: https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/secu...

    It's almost a little misleading because the actual steps are largely inherited from the defaults, you can read more about `stdenv.mkDerivation` here: https://nixos.org/guides/nix-pills/fundamentals-of-stdenv.ht...

nixos-mailserver

Posts with mentions or reviews of nixos-mailserver. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-23.
  • SNM - Mailserver: SMTP outgoing mail not working
    1 project | /r/NixOS | 17 May 2023
    Hello. I have a server running NixOS. Webserver etc. works well and without problems. I tried to install the Simple NixOS Mailserver (https://gitlab.com/simple-nixos-mailserver/nixos-mailserver). After configure it the incoming mail works fine (IMAP: mail.domain.com on port 993) but the mails won't go out.
  • Modern full-featured mail server for low-maintenance self-hosted email
    11 projects | news.ycombinator.com | 23 Feb 2023
    If you are familiar with NixOS, and like to have everything declared in Nix configuration, Simple NixOS Mailserver is very robust and easy to use. Have been using it for ~2 years.

    https://gitlab.com/simple-nixos-mailserver/nixos-mailserver

  • Self Hosted Email Server
    4 projects | /r/selfhosted | 9 Jan 2023
    I was able to set up a reliable email server using Simple NixOS Mailserver following the guide.
  • ridiculously easy mail server setup with NixOS
    2 projects | /r/NixOS | 5 Oct 2022
    I just finished setting up my mail server on my nixos VPS (also huge thanks to nixos-infect devs), it was super easy. Just follow the guide and you have a working 10/10 mail server, I had no bumps along the way and everything just works. It even has flake support which I used. Check out the repo simple-nixos-mailserver/nixos-mailserver.
  • [WIP] Simple yet powerful mail server setup on NixOS
    1 project | /r/NixOS | 3 Aug 2022
    I’ve been using nixos-mailserver for a while now: https://gitlab.com/simple-nixos-mailserver/nixos-mailserver It’s using dovecot and postfix.
  • Maybe moving to self hosted email
    6 projects | /r/selfhosted | 8 May 2022
    If your willing to do some tinkering I recommend simple-nixos-mailserver. I don't use nixos much, but I do find its very good at this one thing.
  • Best minimal Email Server for Linux
    9 projects | /r/selfhosted | 24 Dec 2021
    If you have the option to install NixOS (or convert the preinstalled distro), I can recommend Simple NixOS Mailserver. It is a complete solution (postfix, dovecot, rspamd), and can easily be extended with roundcube webmail.
  • How to Learn Nix
    11 projects | news.ycombinator.com | 22 Nov 2021
    I recently got into running my own NixOS server—setting up Nextcloud[0], a website[1], DNS server and most recently a mail server[2] were all incredibly easy, in fact, setting up DNS records is more involved than configuring a mail server on NixOS! This was all done on a server with less than 10 GB of disk space as well.

    With additional software such as NixOps, personal servers can also be easily spun up and provisioned.

    While inevitably there are rough edges if you look deeply enough, I think the default OOTB experience has been incredible for use on a server and as a day-to-day distro. Highly predictable and declarative configurations is the way to go.

    [0] https://github.com/siraben/dotfiles/blob/ffaaacf8888a5c4167b...

    [1] https://siraben.dev

    [2] https://gitlab.com/simple-nixos-mailserver/nixos-mailserver

  • Error in rebuild after upgrading from 20.09 to 21.05
    1 project | /r/NixOS | 21 Oct 2021
    { config, pkgs, ... }: let nixos-unstable = import { config = removeAttrs config.nixpkgs.config [ "packageOverrides" ]; }; in { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix (builtins.fetchTarball { url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/nixos-21.05/nixos-mailserver-nixos-21.05.tar.gz"; sha256 = "1fwhb7a5v9c98nzhf3dyqf3a5ianqh7k50zizj8v5nmj3blxw4pi"; }) ]; disabledModules = [ "services/misc/mautrix-telegram.nix" "services/misc/matrix-synapse.nix" "services/misc/matrix-appservice-irc.nix" "services/web-apps/jitsi-meet.nix" "services/networking/jitsi-videobridge.nix" "services/networking/jicofo.nix" ]; nixpkgs = { overlays = [ # *snip* some local package definitions ]; config = { allowUnfree = true; packageOverrides = pkgs: { mautrix-telegram = nixos-unstable.mautrix-telegram; matrix-synapse = nixos-unstable.matrix-synapse; matrix-appservice-irc = nixos-unstable.matrix-appservice-irc; jitsi-meet = nixos-unstable.jitsi-meet; jitsi-meet-prosody = nixos-unstable.jitsi-meet-prosody; jitsi-videobridge = nixos-unstable.jitsi-videobridge; jitsi-videobridge2 = nixos-unstable.jitsi-videobridge2; jitsi = nixos-unstable.jitsi; jicofo = nixos-unstable.jicofo; util-linux = nixos-unstable.util-linux; # required by matrix-synapse }; }; }; # ...
  • NixOS for selfhosting?
    4 projects | /r/NixOS | 22 Sep 2021
    I'm running matrix-synapse, nextcloud (in a nixos container), mumble, gitlab, vaultwarden, some game servers (i.e. Minecraft) and even my own mailserver with simple-nixos-mailserver.

What are some alternatives?

When comparing nix and nixos-mailserver you can also consider the following projects:

napalm - Support for building npm packages in Nix and lightweight npm registry [maintainer @jtojnar]

envfs - Fuse filesystem that returns symlinks to executables based on the PATH of the requesting process.

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

maddy - ✉️ Composable all-in-one mail server.

NixOS-docker - DEPRECATED! Dockerfiles to package Nix in a minimal docker container

flake-utils-plus - Use Nix flakes without any fluff.

nixGL - A wrapper tool for nix OpenGL application [maintainer=@guibou]

nur-combined - A repository of NUR that combines all repositories [maintainer=@Mic92]

runix

crowdsec - CrowdSec - the open-source and participative security solution offering crowdsourced protection against malicious IPs and access to the most advanced real-world CTI.

nixos-generators - Collection of image builders [maintainer=@Lassulus]