Skip to content

Commit

Permalink
feat: add basic home site
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsierradz committed Oct 24, 2022
1 parent f0ad1af commit a64187c
Show file tree
Hide file tree
Showing 13 changed files with 573 additions and 0 deletions.
12 changes: 12 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@
platforms = platforms.all;
};
};
packages.home = pkgs.stdenv.mkDerivation {
name = "home";
src = ./home;
installPhase = ''
cp -r . $out
'';
meta = with pkgs.lib; {
description = "My personal Website";
license = licenses.mit;
platforms = platforms.all;
};
};
devShell = pkgs.mkShell {
nativeBuildInputs = [pkgs.hugo];
buildInputs = [];
Expand Down
Binary file added home/android-chrome-192x192.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/android-chrome-512x512.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added home/apple-touch-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a64187c

Please sign in to comment.