fix flake

This commit is contained in:
zack 2024-05-05 23:03:34 -04:00
parent 191f8bcd51
commit b79d10e9c8
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
3 changed files with 39 additions and 16 deletions

View file

@ -5,6 +5,7 @@
}; };
outputs = { outputs = {
self,
systems, systems,
nixpkgs, nixpkgs,
... ...
@ -15,6 +16,30 @@
f nixpkgs.legacyPackages.${system} f nixpkgs.legacyPackages.${system}
); );
in { in {
packages = eachSystem (pkgs: {
default = pkgs.stdenvNoCC.mkDerivation rec {
name = "resume-latex";
src = self;
buildInputs = [
pkgs.coreutils
pkgs.findutils
pkgs.texlive.combined.scheme-full
];
buildPhase = ''
export PATH="${pkgs.lib.makeBinPath buildInputs}"
echo $PATH
mkdir -p .cache/texmf-var
env TEXMFHOME=.cache TEXMFVAR=.cache/texmf-var \
latexmk -interaction=nonstopmode -f -pdf \
resume.tex
'';
installPhase = ''
mkdir -p $out
cp resume.pdf $out/
'';
};
});
devShells = eachSystem (pkgs: { devShells = eachSystem (pkgs: {
default = pkgs.mkShell { default = pkgs.mkShell {
buildInputs = [ buildInputs = [

Binary file not shown.

View file

@ -49,7 +49,7 @@
%------------------------- %-------------------------
% Custom commands % Custom commands
\newcommand{\resumeItem}[2]{ \newcommand{\resumeItem}[2]{
\item\small{ \small{
\textbf{#1}{: #2 \vspace{-12pt}} \textbf{#1}{: #2 \vspace{-12pt}}
} }
} }
@ -63,7 +63,6 @@
} }
\newcommand{\resumeSubheading}[4]{ \newcommand{\resumeSubheading}[4]{
\vspace{-5pt}\item
\begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r} \begin{tabular*}{0.97\textwidth}[t]{l@{\extracolsep{\fill}}r}
\textbf{\color{ctpRed}#1} & \color{ctpSapphire}#2 \\ \textbf{\color{ctpRed}#1} & \color{ctpSapphire}#2 \\
\textit{\small\color{ctpSubtext1}#3} & \textit{\small\color{ctpSubtext0} #4} \\ \textit{\small\color{ctpSubtext1}#3} & \textit{\small\color{ctpSubtext0} #4} \\
@ -94,13 +93,14 @@
%----------HEADING----------------- %----------HEADING-----------------
\begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r} \begin{tabular*}{\textwidth}{l@{\extracolsep{\fill}}r}
\textbf{\href{https://zackmyers.io/}{\Large \color{ctpBlue}Zachary Myers}} & {\faIcon{envelope}\space}Email : \href{me@zackmyers.io}{me@zackmyers.io}\\ \textbf{\href{https://zackmyers.io/}{\Large \color{ctpBlue}Zachary Myers}} & {\faIcon{envelope}\space}Email : \href{me@zackmyers.io}{me@zackmyers.io}\\
{\faLinkedin\space\href{https://www.linkedin.com/in/zachary-myers-b9a150186/}{\underline{Zachary Myers}}} {\space\space\space} \hspace {\faIcon{github}\space\href{https://github.com/zackartz}{\underline{zackartz}}} {\space\space\space} {\faLinkedin\space\href{https://www.linkedin.com/in/zachary-myers-b9a150186/}{\underline{Zachary Myers}}} {\space\space\space}
{\faIcon{user}\space\href{https://zackmyers.io/}{\underline{Website}} {\space\space\space} {\faIcon{github}\space\href{https://github.com/zackartz}{\underline{zackartz}}} {\space\space\space}
{\faIcon{passport}\space{{US Citizen}}}{\space\space\space} {\faIcon{user}\space \href{https://zackmyers.io}{\underline{Website}}} {\space\space\space}
{\faIcon{clock}\space{EST/EDT}} {\faIcon{passport}\space{{US Citizen}}}{\space\space\space}
{\space\space\space} {\faIcon{clock}\space{EST/EDT}}
&{\faIcon{mobile-alt}} Mobile : +1 (808) 799-3884 {\space\space\space}
&\faIcon{mobile-alt} Mobile : +1 (808) 799-3884
\end{tabular*} \end{tabular*}
% %
@ -122,9 +122,7 @@
%-----------EXPERIENCE----------------- %-----------EXPERIENCE-----------------
\section{Experience} \section{Experience}
\resumeSubheading \resumeSubheading{Pixegon}{Remote}{Mid Level Web Developer (Current)}{2023-2024}
{Pixegon}{Remote}
{Mid Level Web Developer (Current)}{2023-2024}
\resumeItemListStart \resumeItemListStart
\item \textbf{Designed and developed global services:} Spearheaded the creation and deployment of robust services that empower users worldwide to advance their professional capabilities. \item \textbf{Designed and developed global services:} Spearheaded the creation and deployment of robust services that empower users worldwide to advance their professional capabilities.
\item \textbf{Enhanced and maintained legacy software:} Leveraged exceptional teamwork and advanced software engineering skills to modernize legacy systems, integrating new functionalities while reducing bug rates. \item \textbf{Enhanced and maintained legacy software:} Leveraged exceptional teamwork and advanced software engineering skills to modernize legacy systems, integrating new functionalities while reducing bug rates.
@ -183,8 +181,8 @@
\section{Education} \section{Education}
\resumeSubheading \resumeSubheading
{Roosevelt High School}{Honolulu, HI} {Roosevelt High School}{Honolulu, HI}
\hbox{2016-2020} {Graduate}{2016-2020}
\vspace{1em} \vspace{1em}
Overachieved in Roosevelt High School's STEM class, succeeding in learning new concepts while helping other students. Worked on personal projects outside of school to further understand programming. Overachieved in Roosevelt High School's STEM class, succeeding in learning new concepts while helping other students. Worked on personal projects outside of school to further understand programming.
\end{document}} \end{document}