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.

22 lines
447 B

1 year ago
  1. {
  2. users.ldap = {
  3. enable = true;
  4. server = "ldap://manager.hpc.informatik.hs-fulda.de/";
  5. base = "dc=hpc,dc=informatik,dc=hs-fulda,dc=de";
  6. daemon.enable = true;
  7. };
  8. filesystem."home" = {
  9. mountPoint = "/home";
  10. device = "manager.hpc.informatik.hs-fulda.de:/home";
  11. fsType = "nfs";
  12. options = [
  13. "nfsvers=4.2"
  14. "noauto"
  15. "x-systemd.automount"
  16. "x-systemd.idle-timeout=600"
  17. ];
  18. };
  19. }