backgrounds/flake.nix

12 lines
234 B
Nix
Raw Normal View History

2024-06-29 02:39:03 +00:00
{
outputs =
{ nixpkgs, ... }: {
packages."x86_64-linux".default = derivation
{
name = "backgrounds";
builder = "${nixpkgs.bash}/bin/bash";
args = [ ./builder.sh ];
};
};
}