add old homepage
This commit is contained in:
parent
67714ad579
commit
39d65ed460
2 changed files with 11 additions and 3 deletions
|
@ -30,9 +30,10 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
packages = pkgs.lib.lists.foldl (a: b: a // b) { } [
|
packages = pkgs.lib.lists.foldl (a: b: a // b) { } (map (f: import f { inherit pkgs inputs; }) [
|
||||||
(import ./scripts/clean-s3-cache.nix { inherit pkgs inputs; })
|
./scripts/clean-s3-cache.nix
|
||||||
];
|
./web/old-homepage.nix
|
||||||
|
]);
|
||||||
|
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
inherit packages devShells;
|
inherit packages devShells;
|
||||||
|
|
7
web/old-homepage.nix
Normal file
7
web/old-homepage.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
homepage-old = pkgs.fetchzip {
|
||||||
|
url = "https://static.darkkirb.de/homepage.tar.zst";
|
||||||
|
sha256 = "sha256-T9fiDZSaAO9+YljPgQM7vEtJcs0tQF2Bd0BlsO4EyfE=";
|
||||||
|
nativeBuildInputs = [ pkgs.zstd ];
|
||||||
|
};
|
||||||
|
}
|
Reference in a new issue