summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--abbenay/hpc.nix16
-rw-r--r--abbenay/nfs.nix20
2 files changed, 33 insertions, 3 deletions
diff --git a/abbenay/hpc.nix b/abbenay/hpc.nix
index 2bbd2d5..469acb5 100644
--- a/abbenay/hpc.nix
+++ b/abbenay/hpc.nix
@@ -6,6 +6,7 @@
password = "/tmp/munge/key";
};
+
services.slurm = {
server.enable = true;
client.enable = true;
@@ -47,8 +48,8 @@
SlurmdLogFile=/var/log/slurmd.log
# COMPUTE NODES
- NodeName=abbenay CPUs=2 State=UNKNOWN
- # NodeName=cyberbox CPUs=1 State=UNKNOWN
+ NodeName=abbenay CPUs=4 State=UNKNOWN
+ NodeName=cyberbox CPUs=1 State=UNKNOWN
# [add more nodes here]
PartitionName=debug Nodes=ALL Default=YES MaxTime=INFINITE State=UP
'';
@@ -63,7 +64,7 @@
};
};
- networking.firewall.allowedTCPPorts = [ 6817 6818 ];
+ networking.firewall.allowedTCPPorts = [ 6817 6818 6819 ];
networking.firewall.allowedTCPPortRanges = [ {
from = 60001;
to = 63000;
@@ -73,4 +74,13 @@
enable = true;
package = pkgs.mariadb;
};
+
+ networking.hosts."192.168.69.104" = [ "cyberbox" ];
+ networking.firewall.enable = false;
+
+
+ environment.systemPackages = with pkgs; [
+cmake lapack blas netcdf netcdffortran perl libxml2 pkg-config perl534Packages.XMLLibXML tcsh subversion
+openmpi
+ ];
}
diff --git a/abbenay/nfs.nix b/abbenay/nfs.nix
new file mode 100644
index 0000000..7405ce1
--- /dev/null
+++ b/abbenay/nfs.nix
@@ -0,0 +1,20 @@
+{ config, lib, pkgs, ... }:
+
+{
+ services.nfs.server = {
+ enable = true;
+ # hostName = "abbenay";
+
+ exports = ''
+ /export 192.168.69.104(rw,sync,fsid=0,no_subtree_check)
+ /export/shared 192.168.69.104(rw,sync,insecure,nohide,no_subtree_check)
+ '';
+ };
+
+ fileSystems."/export/shared" = {
+ device = "/home/stuebinm/shared";
+ options = [ "bind" ];
+ };
+
+ networking.firewall.allowedTCPPorts = [ 2049 ];
+}