server.nix: noXlibs workaround

auto-flake-update
Yorick van Pelt 2021-01-02 20:48:45 +01:00
parent 2554711cc8
commit 86e5433e94
Signed by: yorick
GPG Key ID: A36E70F9DC014A15
1 changed files with 6 additions and 1 deletions

View File

@ -7,5 +7,10 @@
environment.noXlibs = true;
networking.firewall.logRefusedConnections = false; # Silence logging of scanners and knockers
# TODO: upstream with noXlibs
# https://github.com/NixOS/nixpkgs/pull/107394
nixpkgs.overlays = [ (self: super: {
elixir_1_8 = (self.beam.packagesWith (self.beam.interpreters.erlang_nox)).elixir_1_8;
erlang = super.erlang_nox;
}) ];
}