about summary refs log tree commit diff
path: root/users/wpcarro/website/default.nix
blob: 9480c38e9fe273d1683f86778ea3105116db6c20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, depot, ... }:

pkgs.stdenv.mkDerivation {
  name = "wpcarro.dev";
  src = builtins.path { path = ./.; name = "website"; };
  installPhase = ''
    mkdir -p $out
    cp $src/index.html $out

    mkdir -p $out/habits
    cp -r ${depot.users.wpcarro.website.habit-screens} $out/habits/index.html
  '';
}