diff --git a/m/hut/nginx.nix b/m/hut/nginx.nix index 97afc3a..f38d587 100644 --- a/m/hut/nginx.nix +++ b/m/hut/nginx.nix @@ -2,10 +2,13 @@ let website = pkgs.stdenv.mkDerivation { name = "jungle-web"; - src = theFlake; + src = pkgs.fetchgit { + url = "https://jungle.bsc.es/git/rarias/jungle-website.git"; + rev = "739bf0175a7f05380fe7ad7023ff1d60db1710e1"; + hash = "sha256-ea5DzhYTzZ9TmqD+x95rdNdLbxPnBluqlYH2NmBYmc4="; + }; buildInputs = [ pkgs.hugo ]; buildPhase = '' - cd web rm -rf public/ hugo ''; diff --git a/m/tent/nginx.nix b/m/tent/nginx.nix index 731b011..4568690 100644 --- a/m/tent/nginx.nix +++ b/m/tent/nginx.nix @@ -2,10 +2,13 @@ let website = pkgs.stdenv.mkDerivation { name = "jungle-web"; - src = theFlake; + src = pkgs.fetchgit { + url = "https://jungle.bsc.es/git/rarias/jungle-website.git"; + rev = "739bf0175a7f05380fe7ad7023ff1d60db1710e1"; + hash = "sha256-ea5DzhYTzZ9TmqD+x95rdNdLbxPnBluqlYH2NmBYmc4="; + }; buildInputs = [ pkgs.hugo ]; buildPhase = '' - cd web rm -rf public/ hugo '';