nixos installer: don't log refused packets to console

Fixes #19764.
This commit is contained in:
Franz Pletz
2017-01-09 19:24:41 +01:00
parent 464c79ea9f
commit 88908145ea
5 changed files with 6 additions and 6 deletions
@@ -70,5 +70,11 @@ with lib;
# the initrd builder.
system.extraDependencies = [ pkgs.stdenv pkgs.busybox pkgs.perlPackages.ArchiveCpio ];
# Show all debug messages from the kernel but don't log refused packets
# because we have the firewall enabled. This makes installs from the
# console less cumbersome if the machine has a public IP.
boot.consoleLogLevel = mkDefault 7;
networking.firewall.logRefusedConnections = mkDefault false;
};
}