NixOS configuration for HPC cluster https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
477 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
7 months ago
1 year ago
1 year ago
1 year ago
11 months ago
7 months ago
1 year ago
1 year ago
  1. _:
  2. { pkgs, lib, config, ... }:
  3. with lib;
  4. {
  5. imports = [
  6. ./hardware.nix
  7. ./disk.nix
  8. ./network.nix
  9. ./nfs.nix
  10. ./ldap.nix
  11. ./users.nix
  12. ./nginx.nix
  13. ./mail.nix
  14. #./beegfs.nix
  15. ./ntp.nix
  16. ./dhcp.nix
  17. ./netinstall
  18. ./cache.nix
  19. ./rdma.nix
  20. ./mpi.nix
  21. ./slurm.nix
  22. ./docs.nix
  23. ];
  24. deployment = {
  25. targetHost = "10.32.47.10";
  26. targetUser = "root";
  27. tags = [ "manager" ];
  28. };
  29. networking.hostName = "manager";
  30. }