brzeczyszczykiewicz: add bokhylle as alias for the grzegorz service
Eval nix flake / evals (push) Successful in 8m48s Details

pull/18/head
Daniel Lovbrotte Olsen 2023-11-26 02:36:23 +01:00
parent 42c1803c9b
commit d7638138ed
2 changed files with 12 additions and 1 deletions

View File

@ -6,7 +6,7 @@
../../base.nix
../../misc/metrics-exporters.nix
../../modules/grzegorz.nix
./services/grzegorz.nix
];
boot.loader.systemd-boot.enable = true;

View File

@ -0,0 +1,11 @@
{ config, ... }:
{
imports = [ ../../../modules/grzegorz.nix ];
services.nginx.virtualHosts."${config.networking.fqdn}" = {
serverAliases = [
"bokhylle.pvv.ntnu.no"
"bokhylle.pvv.org"
];
};
}