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.

21 lines
321 B

1 year ago
1 year ago
1 year ago
1 year ago
  1. { config, ... }:
  2. {
  3. networking.domain = "hpc.informatik.hs-fulda.de";
  4. networking.search = [
  5. config.networking.domain
  6. ];
  7. networking.nameservers = [
  8. "10.0.0.52"
  9. "10.1.1.10"
  10. ];
  11. networking.useDHCP = false;
  12. services.openssh = {
  13. enable = true;
  14. permitRootLogin = "without-password";
  15. };
  16. }