Add a nix expression for building the resume.

This commit is contained in:
2023-02-19 20:06:47 -08:00
parent c0fdf37da9
commit 2d5098909c
3 changed files with 39 additions and 0 deletions

15
flake.nix Normal file
View File

@@ -0,0 +1,15 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
{
defaultPackage = import ./package.nix {
pkgs = import nixpkgs { inherit system; };
};
}
);
}