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.

28 lines
373 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. { lib, config, ... }:
  3. with lib;
  4. {
  5. imports = [
  6. ./hardware.nix
  7. ./disk.nix
  8. ./network.nix
  9. ./nfs.nix
  10. ./ldap.nix
  11. #./beegfs.nix
  12. ./ntp.nix
  13. #./gateway.nix
  14. #./netinstall.nix
  15. ./cache.nix
  16. ];
  17. deployment = {
  18. targetHost = "10.32.30.93";
  19. targetUser = "root";
  20. tags = [ "manager" ];
  21. };
  22. networking.hostName = "manager";
  23. }