(hydrogen/nginx) add projet-modelisation-geometrique

This commit is contained in:
Laureηt 2023-06-27 21:08:29 +02:00
parent 4a2ea1459b
commit 1b229e93b8
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
2 changed files with 14 additions and 0 deletions

View file

@ -20,6 +20,9 @@
"/projet-probleme-inverse-3D/" = # #
import ./projet-probleme-inverse-3D.nix pkgs;
"/projet-modelisation-geometrique/" = # #
import ./projet-modelisation-geometrique.nix pkgs;
"/projet-long/" = # #
import ./projet-long.nix pkgs;

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
let
pages = pkgs.fetchgit {
url = "https://git.fainsin.bzh/ENSEEIHT/projet-modelisation-geometrique";
rev = "bf68bccd640e68b92749b0580c82f8ab65e923a8"; # pages
sha256 = "sha256-zAzCRREutwKTuHUxgruWFJAhqrF3e9ei3TCiuBixDDg=";
};
in {
alias = "${pages}/";
index = "index.html";
}