{ config, lib, pkgs, ... }: with lib; let cfg = config.services.slurm; # configuration file can be generated by http://slurm.schedmd.com/configurator.html configFile = pkgs.writeText "slurm.conf" '' ${optionalString (cfg.controlMachine != null) ''controlMachine=${cfg.controlMachine}''} ${optionalString (cfg.controlAddr != null) ''controlAddr=${cfg.controlAddr}''} ${optionalString (cfg.nodeName != null) ''nodeName=${cfg.nodeName}''} ${optionalString (cfg.partitionName != null) ''partitionName=${cfg.partitionName}''} PlugStackConfig=${plugStackConfig} ${cfg.extraConfig} ''; plugStackConfig = pkgs.writeText "plugstack.conf" '' ${optionalString cfg.enableSrunX11 ''optional ${pkgs.slurm-spank-x11}/lib/x11.so''} ''; in { ###### interface options = { services.slurm = { server = { enable = mkEnableOption "slurm control daemon"; }; client = { enable = mkEnableOption "slurm rlient daemon"; }; package = mkOption { type = types.package; default = pkgs.slurm; defaultText = "pkgs.slurm"; example = literalExample "pkgs.slurm-full"; description = '' The package to use for slurm binaries. ''; }; controlMachine = mkOption { type = types.nullOr types.str; default = null; example = null; description = '' The short hostname of the machine where SLURM control functions are executed (i.e. the name returned by the command "hostname -s", use "tux001" rather than "tux001.my.com"). ''; }; controlAddr = mkOption { type = types.nullOr types.str; default = cfg.controlMachine; example = null; description = '' Name that ControlMachine should be referred to in establishing a communications path. ''; }; nodeName = mkOption { type = types.nullOr types.str; default = null; example = "linux[1-32] CPUs=1 State=UNKNOWN"; description = '' Name that SLURM uses to refer to a node (or base partition for BlueGene systems). Typically this would be the string that "/bin/hostname -s" returns. Note that now you have to write node's parameters after the name. ''; }; partitionName = mkOption { type = types.nullOr types.str; default = null; example = "debug Nodes=linux[1-32] Default=YES MaxTime=INFINITE State=UP"; description = '' Name by which the partition may be referenced. Note that now you have to write patrition's parameters after the name. ''; }; enableSrunX11 = mkOption { default = false; type = types.bool; description = '' If enabled srun will accept the option "--x11" to allow for X11 forwarding from within an interactive session or a batch job. This activates the slurm-spank-x11 module. Note that this requires 'services.openssh.forwardX11' to be enabled on the compute nodes. ''; }; extraConfig = mkOption { default = ""; type = types.lines; description = '' Extra configuration options that will be added verbatim at the end of the slurm configuration file. ''; }; }; }; ###### implementation config = let wrappedSlurm = pkgs.stdenv.mkDerivation { name = "wrappedSlurm"; propagatedBuildInputs = [ cfg.package configFile ]; builder = pkgs.writeText "builder.sh" '' source $stdenv/setup mkdir -p $out/bin find ${getBin cfg.package}/bin -type f -executable | while read EXE do exename="$(basename $EXE)" wrappername="$out/bin/$exename" cat > "$wrappername" <