Skip to content

Commit

Permalink
Make presentation the default build
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal-Atlas committed Oct 25, 2023
1 parent cf89711 commit 50d165d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
hash = "sha256-R599Zdw9YzID7CRzWRcasz+ZZvZiagBFsuDWUvnNX4o=";
};
in {
packages.x86_64-linux = {
packages.x86_64-linux = rec {
presentation = pkgs.runCommand "intro-presentation" {} ''
mkdir $out
ln -s ${revealjs} $out/reveal.js
cp ${./index.html} $out/index.html
'';
default = presentation;
};
};
}

0 comments on commit 50d165d

Please sign in to comment.