backgrounds/flake.nix

15 lines
340 B
Nix
Raw Normal View History

2024-06-29 02:39:03 +00:00
{
2024-06-29 02:40:26 +00:00
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
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 ];
2024-06-29 02:41:22 +00:00
system = builtins.currentSystem;
2024-06-29 02:39:03 +00:00
};
};
}