diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-20 00:04:45 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-03-20 00:04:45 +0100 |
commit | 17cbff1411a02f7f5a8e8752ff8a8771748e6dc7 (patch) | |
tree | fe34ebc191a1f96389f5b97d5b7c6860630d0ff4 | |
parent | fix(data): Move to correct subdir (diff) | |
download | b-peetz.de-17cbff1411a02f7f5a8e8752ff8a8771748e6dc7.zip |
fix(flake): Force building locally
Trying to substitute the build is pointless, as the “build” is composed of just copying files.
-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 = '' |