From c4296b3278de0fdab3368ec377d14b63357e3848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 9 Oct 2024 21:54:13 -0400 Subject: [PATCH] flake.nix: less buildInputs --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e8e1c45..f43c7dc 100644 --- a/flake.nix +++ b/flake.nix @@ -27,7 +27,7 @@ pname = "jakstys.lt"; version = "1.0.0"; src = pkgs.lib.cleanSource self; - buildInputs = devDeps; + buildInputs = with pkgs; [hugo dart-sass]; buildPhase = "hugo --cleanDestinationDir --printPathWarnings --panicOnWarning"; installPhase = "mv public $out"; }) {};