main
Zynh Ludwig 2024-06-28 19:39:03 -07:00
parent 6ac03f05d1
commit 6c3cbb5613
2 changed files with 13 additions and 0 deletions

2
builder.sh Executable file
View File

@ -0,0 +1,2 @@
mkdir $out
cp *\.{png,webp} $out

11
flake.nix Normal file
View File

@ -0,0 +1,11 @@
{
outputs =
{ nixpkgs, ... }: {
packages."x86_64-linux".default = derivation
{
name = "backgrounds";
builder = "${nixpkgs.bash}/bin/bash";
args = [ ./builder.sh ];
};
};
}