diff options
author | Franck Cuny <franck@fcuny.net> | 2024-07-04 11:40:40 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-07-04 11:40:40 -0700 |
commit | 7c9546c9d10e21787f80f4279bc54dbfda02dcfb (patch) | |
tree | ff39770df3f5d291f937ebd6cc210a2714b4bb2d | |
parent | flake.lock: Update (diff) | |
download | fcuny.net-7c9546c9d10e21787f80f4279bc54dbfda02dcfb.tar.gz |
fix build command
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 8db99b7..3b11599 100644 --- a/flake.nix +++ b/flake.nix @@ -26,7 +26,7 @@ buildInputs = [ zola git ]; buildPhase = '' mkdir -p $out - ${pkgs.zola}/bin/zola -o $out + ${pkgs.zola}/bin/zola build -o $out ''; dontInstall = true; }; |