diff options
-rw-r--r-- | flake.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index ff7533a..6fb467e 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,6 @@ outputs = { nixpkgs, flake-utils, - revealjs, ... }: flake-utils.lib.eachDefaultSystem ( @@ -28,8 +27,13 @@ packages = { default = pkgs.stdenv.mkDerivation { pname = "b-peetz.de"; - version = "1"; + version = "v1.0"; src = ./src; + + # Run local + preferLocalBuild = true; + allowSubstitutes = false; + nativeBuildInputs = []; buildPhase = ""; installPhase = '' |