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.

23 lines
356 B

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