nixos/slurm: enable munge by default, added note to slurm description

This commit is contained in:
Markus Kowalewski
2018-05-24 16:59:48 +02:00
parent 2a14e898bc
commit fb7428c506
2 changed files with 13 additions and 5 deletions
-2
View File
@@ -20,7 +20,6 @@ in {
# TODO slrumd port and slurmctld port should be configurations and
# automatically allowed by the firewall.
networking.firewall.enable = false;
services.munge.enable = true;
services.slurm = slurmconfig;
};
in {
@@ -28,7 +27,6 @@ in {
{ config, pkgs, ...}:
{
networking.firewall.enable = false;
services.munge.enable = true;
services.slurm = {
server.enable = true;
} // slurmconfig;