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.

19 lines
302 B

11 months ago
1 year ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
1 year ago
  1. { config, pkgs, lib, ... }:
  2. with lib;
  3. {
  4. imports = [
  5. ../../docs/module.nix
  6. ];
  7. services.nginx.virtualHosts."${config.networking.domain}" = {
  8. default = true;
  9. serverAliases = [
  10. "doku.${config.networking.domain}"
  11. ];
  12. locations."/".root = config.system.build.docs;
  13. };
  14. }