From 50d165d52054962202c620c285e7ee0e0416f20e Mon Sep 17 00:00:00 2001 From: Michal Atlas Date: Wed, 25 Oct 2023 19:34:46 +0200 Subject: [PATCH] Make presentation the default build --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 64c8917..0a967b8 100644 --- a/flake.nix +++ b/flake.nix @@ -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; }; }; }