Compare commits

..

No commits in common. "afc18efdd263d32168e9e2969f9b2a433e0b0202" and "ba084faa9f9d5c539de042f4c4072aa5b653b02f" have entirely different histories.

2 changed files with 2 additions and 17 deletions

View file

@ -1,22 +1,7 @@
{
description = "My resume";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self }: {
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.${system}.default = pkgs.stdenv.mkDerivation {
name = "resume";
src = ./.;
installPhase = ''
mkdir -p $out
cp index.html resume.css $out/
'';
};
};
};
}