Move learn to website/learn

Nest the learn directory in the website directory.
This commit is contained in:
William Carroll 2020-03-20 00:47:21 +00:00
parent 95e761e59b
commit 1d5ab45303
5 changed files with 1 additions and 2 deletions

10
website/learn/default.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "learn.wpcarro.dev";
src = ./static;
buildPhase = ''
cp -R $src $out
'';
dontInstall = true;
}