diff options
author | Ben Sima <ben@bsima.me> | 2024-12-04 15:52:52 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-21 10:08:05 -0500 |
commit | 81cf94523f5a794e5b0c69dbd9a94619135a23c7 (patch) | |
tree | 22544f9d741827ebfe65f73f0202b2b095a09cf8 /Biz/Nixpert.nix | |
parent | 47c48abf836f5918120c0550c57d4eda32d3f10e (diff) |
Prune unused stuff
This was all dead weight, just delete it and move on.
Diffstat (limited to 'Biz/Nixpert.nix')
-rw-r--r-- | Biz/Nixpert.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Biz/Nixpert.nix b/Biz/Nixpert.nix deleted file mode 100644 index f2f99b2..0000000 --- a/Biz/Nixpert.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ pkgs, ... }: - -let - salespage = pkgs.runCommand "salespage" { } '' - mkdir -p $out - ${pkgs.pandoc}/bin/pandoc \ - --standalone \ - -f commonmark_x \ - --include-in-header ${./Que/Style.css} \ - --include-in-header ${./Nixpert/ChatWidget.html} \ - -t html \ - ${./Nixpert.md} \ - > $out/index.html - ''; -in { - services.nginx.virtualHosts."nixpert.chat" = { - forceSSL = true; - enableACME = true; - locations."/" = { - root = "${salespage}"; - extraConfig = '' - add_header Access-Control-Allow-Origin "*"; - ''; - }; - }; -} |