From b370913199f3907758f2f8639915802e857e3af6 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Tue, 14 Feb 2023 00:05:31 +0100 Subject: chaski: remove 22f3 floor plans --- chaski/services/22f3.nix | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 chaski/services/22f3.nix (limited to 'chaski/services') diff --git a/chaski/services/22f3.nix b/chaski/services/22f3.nix deleted file mode 100644 index 877966c..0000000 --- a/chaski/services/22f3.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ config, lib, pkgs, inputs, ... }: - -let - roomplans = pkgs.stdenv.mkDerivation { - name = "22f3-roomplans"; - src = inputs.freiraum; - buildInputs = with pkgs; [ poppler_utils inkscape gauche ]; - buildPhase = '' - cp $src/* . - gosh ./generate.scm - ''; - installPhase = '' - mkdir -p $out; - cp out/combined.pdf $out/raumplan.pdf - cp svg/* $out - ''; - }; -in - -{ - services.nginx.virtualHosts."22f3.stuebinm.eu" = { - enableACME = true; - forceSSL = true; - locations."/" = { - root = roomplans.outPath; - extraConfig = '' - autoindex on; - ''; - }; - }; -} -- cgit v1.2.3