From e6a208887f97b93a3966ffa42df8f57bd2d5f502 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Fri, 28 Jun 2024 20:13:49 -0700 Subject: [PATCH] src dir? --- builder.sh | 2 +- flake.nix | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/builder.sh b/builder.sh index 5c2e81e..1573081 100755 --- a/builder.sh +++ b/builder.sh @@ -1,3 +1,3 @@ export PATH="$coreutils/bin" mkdir $out -cp *\.{png,webp} $out +cp $src/*\.{png,webp} $out diff --git a/flake.nix b/flake.nix index a9556db..50d1c38 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,7 @@ name = "backgrounds"; builder = "${pkgs.bash}/bin/bash"; args = [ ./builder.sh ]; + src = ./.; }; }); };