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.

33 lines
447 B

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year 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. #./beegfs.nix
  14. ./ntp.nix
  15. ./netinstall
  16. ./cache.nix
  17. ./rdma.nix
  18. ./mpi.nix
  19. ./slurm.nix
  20. ./docs.nix
  21. ];
  22. deployment = {
  23. targetHost = "10.32.47.10";
  24. targetUser = "root";
  25. tags = [ "manager" ];
  26. };
  27. networking.hostName = "manager";
  28. }