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.

14 lines
172 B

  1. { pkgs, lib, ... }:
  2. with lib;
  3. let
  4. edumpi = pkgs.callPackage ../packages/edumpi { };
  5. in
  6. {
  7. systemd.tmpfiles.rules = [
  8. ''L+ /opt/edumpi - - - - ${edumpi}''
  9. ];
  10. }