1
0
Fork 0
nixfiles/hosts/web-2/bubblesort.nix

15 lines
376 B
Nix
Raw Normal View History

2022-10-17 23:03:09 +02:00
{ pkgs, ... }:
2021-01-02 18:19:11 +01:00
{
services.nginx.virtualHosts = {
"bubblesort.clerie.de" = {
enableACME = true;
forceSSL = true;
2022-10-17 23:03:09 +02:00
root = pkgs.fetchgit {
2021-01-02 18:19:11 +01:00
url = "https://git.clerie.de/clerie/bubblesort_js.git";
rev = "39d54701a11f4fb48d7e023e384a848e6bde5640";
2022-10-17 23:03:09 +02:00
sha256 = "sha256-au/sbTVLDER0BbXD6cKJIpq0GcS/saiRQw46mZQWsO0=";
2021-01-02 18:19:11 +01:00
};
};
};
}