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.

17 lines
229 B

1 year ago
  1. { pkgs, lib, ... }:
  2. with lib;
  3. let
  4. docs = pkgs.callPackage ../../docs { };
  5. in
  6. {
  7. services.nginx = {
  8. virtualHosts = {
  9. "docs.${config.networking.domain}" = {
  10. locations."/".root = docs;
  11. };
  12. };
  13. };
  14. }